|
| 1 | +[project] |
| 2 | +name = "salt" |
| 3 | +description = "Portable, distributed, remote execution and configuration management system" |
| 4 | +readme = "README.rst" |
| 5 | +requires-python = ">=3.8" |
| 6 | +license = {text = "Apache Software License 2.0"} |
| 7 | +authors = [ |
| 8 | + {name = "Thomas S Hatch", email = "thatch45@gmail.com"}, |
| 9 | +] |
| 10 | +classifiers = [ |
| 11 | + "Programming Language :: Python", |
| 12 | + "Programming Language :: Cython", |
| 13 | + "Programming Language :: Python :: 3", |
| 14 | + "Programming Language :: Python :: 3 :: Only", |
| 15 | + "Programming Language :: Python :: 3.8", |
| 16 | + "Programming Language :: Python :: 3.9", |
| 17 | + "Programming Language :: Python :: 3.10", |
| 18 | + "Development Status :: 5 - Production/Stable", |
| 19 | + "Environment :: Console", |
| 20 | + "Intended Audience :: Developers", |
| 21 | + "Intended Audience :: Information Technology", |
| 22 | + "Intended Audience :: System Administrators", |
| 23 | + "License :: OSI Approved :: Apache Software License", |
| 24 | + "Operating System :: POSIX :: Linux", |
| 25 | + "Topic :: System :: Clustering", |
| 26 | + "Topic :: System :: Distributed Computing", |
| 27 | +] |
| 28 | +dynamic = ["version", "dependencies", "optional-dependencies", "scripts", "entry-points"] |
| 29 | + |
| 30 | +[tool.setuptools.dynamic] |
| 31 | +dependencies = {file = ["requirements/base.txt", "requirements/zeromq.txt"]} |
| 32 | +optional-dependencies = {crypto = {file = ["requirements/crypto.txt"]}} |
| 33 | + |
| 34 | +[project.urls] |
| 35 | +Homepage = "https://saltproject.io" |
| 36 | + |
1 | 37 | [tool.black] |
2 | 38 | exclude= """ |
3 | 39 | /( |
|
0 commit comments