diff --git a/REFACTOR.md b/REFACTOR.md index 638c972..000ad36 100644 --- a/REFACTOR.md +++ b/REFACTOR.md @@ -50,3 +50,5 @@ - Config TOML accepts either `config_dir` or `config_map`, nothing else and only one of the two. - Refresh scripts should likely specify a shell shabang at the top of the file +- `apps` can serve as a dotfiles folder +- Support symlinking whole folders? diff --git a/pyproject.toml b/pyproject.toml index 780bb05..2986866 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,8 +6,8 @@ build-backend = "setuptools.build_meta" enabled = true [project] -name = "co3" -description = "Lightweight Python ORM for hierarchical storage management" +name = "symconf" +description = "Local app configuration manager" readme = "README.md" requires-python = ">=3.12" dynamic = ["version"] @@ -15,7 +15,7 @@ dynamic = ["version"] authors = [ { name="Sam Griesemer", email="samgriesemer+git@gmail.com" }, ] -keywords = ["database", "orm"] +keywords = ["config"] classifiers = [ "Programming Language :: Python :: 3.12", "License :: OSI Approved :: MIT License", @@ -24,11 +24,7 @@ classifiers = [ "Intended Audience :: Developers", ] dependencies = [ - "tqdm", - "wcmatch", - "numpy", - "sqlalchemy", - "colorama", + "pyxdg", ] [project.optional-dependencies] @@ -42,11 +38,11 @@ docs = [ ] [project.urls] -Homepage = "https://doc.olog.io/co3" -Documentation = "https://doc.olog.io/co3" -Repository = "https://git.olog.io/olog/co3" -Issues = "https://git.olog.io/olog/co3/issues" +Homepage = "https://doc.olog.io/symconf" +Documentation = "https://doc.olog.io/symconf" +Repository = "https://git.olog.io/olog/symconf" +Issues = "https://git.olog.io/olog/symconf/issues" [tool.setuptools.packages.find] -include = ["co3*"] # pattern to match package names +include = ["symconf*"] # pattern to match package names diff --git a/tests/test-config-dir/conf.ini b/tests/test-config-dir/conf.ini deleted file mode 100644 index e69de29..0000000 diff --git a/tests/test_imports.py b/tests/test_imports.py new file mode 100644 index 0000000..2d9ee35 --- /dev/null +++ b/tests/test_imports.py @@ -0,0 +1,5 @@ +def test_imports(): + from autoconf import ConfigManager + + from autoconf import config + from autoconf import theme