2024-05-18 22:35:10 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools", "wheel", "setuptools-git-versioning>=2.0,<3"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[tool.setuptools-git-versioning]
|
|
|
|
enabled = true
|
|
|
|
|
|
|
|
[project]
|
2024-07-03 22:42:13 +00:00
|
|
|
name = "symconf"
|
|
|
|
description = "Local app configuration manager"
|
2024-05-18 22:35:10 +00:00
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.12"
|
|
|
|
dynamic = ["version"]
|
|
|
|
#license = {file = "LICENSE"}
|
|
|
|
authors = [
|
|
|
|
{ name="Sam Griesemer", email="samgriesemer+git@gmail.com" },
|
|
|
|
]
|
2024-07-03 22:42:13 +00:00
|
|
|
keywords = ["config"]
|
2024-05-18 22:35:10 +00:00
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
]
|
|
|
|
dependencies = [
|
2024-07-03 22:42:13 +00:00
|
|
|
"pyxdg",
|
2024-07-05 09:06:05 +00:00
|
|
|
"colorama",
|
2024-05-18 22:35:10 +00:00
|
|
|
]
|
|
|
|
|
2024-07-09 19:18:16 +00:00
|
|
|
[project.scripts]
|
|
|
|
symconf = "symconf.__main__:main"
|
|
|
|
|
2024-05-18 22:35:10 +00:00
|
|
|
[project.optional-dependencies]
|
|
|
|
tests = ["pytest"]
|
|
|
|
docs = [
|
|
|
|
"sphinx",
|
|
|
|
"sphinx-togglebutton",
|
|
|
|
"sphinx-autodoc-typehints",
|
|
|
|
"furo",
|
|
|
|
"myst-parser",
|
|
|
|
]
|
2024-07-05 09:06:05 +00:00
|
|
|
build = ["build", "twine"]
|
2024-05-18 22:35:10 +00:00
|
|
|
|
|
|
|
[project.urls]
|
2024-07-03 22:42:13 +00:00
|
|
|
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"
|
2024-05-18 22:35:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
2024-07-03 22:42:13 +00:00
|
|
|
include = ["symconf*"] # pattern to match package names
|