diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 54 |
1 files changed, 49 insertions, 5 deletions
diff --git a/pyproject.toml b/pyproject.toml index 86a1527..e44adbb 100644 --- a/pyproject.toml +++ b/pyproject.toml | |||
| @@ -1,10 +1,42 @@ | |||
| 1 | [build-system] | 1 | [project] |
| 2 | requires = [ | 2 | name = "etoolkit" |
| 3 | "setuptools>=51", | 3 | description = "A simple toolkit for setting environment variables in a flexible way" |
| 4 | "wheel" | 4 | dynamic = ["version"] |
| 5 | license = "GPL-3.0-or-later" | ||
| 6 | authors = [{name = "Simeon Simeonov", email = "sgs@pichove.org"}] | ||
| 7 | readme = "README.md" | ||
| 8 | requires-python = ">= 3.10" | ||
| 9 | |||
| 10 | classifiers = [ | ||
| 11 | "Development Status :: 5 - Production/Stable", | ||
| 12 | "Environment :: Console", | ||
| 13 | "Intended Audience :: Developers", | ||
| 14 | "Intended Audience :: System Administrators", | ||
| 15 | "Programming Language :: Python :: 3", | ||
| 16 | "Programming Language :: Python :: 3.10", | ||
| 17 | "Programming Language :: Python :: 3.11", | ||
| 18 | "Programming Language :: Python :: 3.12", | ||
| 19 | "Programming Language :: Python :: 3.13", | ||
| 20 | "Programming Language :: Python :: 3.14", | ||
| 21 | "Programming Language :: Python :: 3.15", | ||
| 22 | "Operating System :: POSIX", | ||
| 23 | "Topic :: Security :: Cryptography", | ||
| 5 | ] | 24 | ] |
| 6 | 25 | ||
| 7 | build-backend = "setuptools.build_meta" | 26 | dependencies = [ |
| 27 | "cryptography>=3.2" | ||
| 28 | ] | ||
| 29 | |||
| 30 | |||
| 31 | [project.scripts] | ||
| 32 | etoolkit = "etoolkit.__main__:main" | ||
| 33 | |||
| 34 | |||
| 35 | [project.urls] | ||
| 36 | Homepage = "https://codeberg.org/sgs/etoolkit" | ||
| 37 | Repository = "https://codeberg.org/sgs/etoolkit" | ||
| 38 | Issues = "https://codeberg.org/sgs/etoolkit/issues" | ||
| 39 | Changelog = "https://codeberg.org/sgs/etoolkit/src/branch/master/CHANGELOG.md" | ||
| 8 | 40 | ||
| 9 | 41 | ||
| 10 | [tool.pytest.ini_options] | 42 | [tool.pytest.ini_options] |
| @@ -16,3 +48,15 @@ testpaths = [ | |||
| 16 | pythonpath = [ | 48 | pythonpath = [ |
| 17 | "src" | 49 | "src" |
| 18 | ] | 50 | ] |
| 51 | |||
| 52 | |||
| 53 | [tool.setuptools.dynamic] | ||
| 54 | version = {attr = "etoolkit.__version__"} | ||
| 55 | |||
| 56 | |||
| 57 | [build-system] | ||
| 58 | requires = [ | ||
| 59 | "setuptools >= 77.0.3", | ||
| 60 | "wheel" | ||
| 61 | ] | ||
| 62 | build-backend = "setuptools.build_meta" | ||
