clean up repo, prepare initial pub
This commit is contained in:
parent
73816ecd67
commit
a0c250ac83
@ -50,3 +50,5 @@
|
|||||||
- Config TOML accepts either `config_dir` or `config_map`, nothing else and only one of
|
- Config TOML accepts either `config_dir` or `config_map`, nothing else and only one of
|
||||||
the two.
|
the two.
|
||||||
- Refresh scripts should likely specify a shell shabang at the top of the file
|
- 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?
|
||||||
|
@ -6,8 +6,8 @@ build-backend = "setuptools.build_meta"
|
|||||||
enabled = true
|
enabled = true
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "co3"
|
name = "symconf"
|
||||||
description = "Lightweight Python ORM for hierarchical storage management"
|
description = "Local app configuration manager"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
dynamic = ["version"]
|
dynamic = ["version"]
|
||||||
@ -15,7 +15,7 @@ dynamic = ["version"]
|
|||||||
authors = [
|
authors = [
|
||||||
{ name="Sam Griesemer", email="samgriesemer+git@gmail.com" },
|
{ name="Sam Griesemer", email="samgriesemer+git@gmail.com" },
|
||||||
]
|
]
|
||||||
keywords = ["database", "orm"]
|
keywords = ["config"]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Programming Language :: Python :: 3.12",
|
"Programming Language :: Python :: 3.12",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
@ -24,11 +24,7 @@ classifiers = [
|
|||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
]
|
]
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"tqdm",
|
"pyxdg",
|
||||||
"wcmatch",
|
|
||||||
"numpy",
|
|
||||||
"sqlalchemy",
|
|
||||||
"colorama",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
@ -42,11 +38,11 @@ docs = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
Homepage = "https://doc.olog.io/co3"
|
Homepage = "https://doc.olog.io/symconf"
|
||||||
Documentation = "https://doc.olog.io/co3"
|
Documentation = "https://doc.olog.io/symconf"
|
||||||
Repository = "https://git.olog.io/olog/co3"
|
Repository = "https://git.olog.io/olog/symconf"
|
||||||
Issues = "https://git.olog.io/olog/co3/issues"
|
Issues = "https://git.olog.io/olog/symconf/issues"
|
||||||
|
|
||||||
|
|
||||||
[tool.setuptools.packages.find]
|
[tool.setuptools.packages.find]
|
||||||
include = ["co3*"] # pattern to match package names
|
include = ["symconf*"] # pattern to match package names
|
||||||
|
5
tests/test_imports.py
Normal file
5
tests/test_imports.py
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
def test_imports():
|
||||||
|
from autoconf import ConfigManager
|
||||||
|
|
||||||
|
from autoconf import config
|
||||||
|
from autoconf import theme
|
Loading…
Reference in New Issue
Block a user