|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "hatchling", |
| 4 | + "hatch-vcs", |
| 5 | +] |
| 6 | +build-backend = "hatchling.build" |
| 7 | + |
| 8 | +[project] |
| 9 | +name = "execnet" |
| 10 | +dynamic = ["version"] |
| 11 | +description = "execnet: rapid multi-Python deployment" |
| 12 | +long_description_file = "README.rst" |
| 13 | +license = "MIT" |
| 14 | +requires-python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" |
| 15 | +authors = [ |
| 16 | + { name = "holger krekel and others" }, |
| 17 | +] |
| 18 | +classifiers = [ |
| 19 | + "Development Status :: 5 - Production/Stable", |
| 20 | + "Intended Audience :: Developers", |
| 21 | + "License :: OSI Approved :: MIT License", |
| 22 | + "Operating System :: MacOS :: MacOS X", |
| 23 | + "Operating System :: Microsoft :: Windows", |
| 24 | + "Operating System :: POSIX", |
| 25 | + "Programming Language :: Python :: 2", |
| 26 | + "Programming Language :: Python :: 2.7", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.5", |
| 29 | + "Programming Language :: Python :: 3.6", |
| 30 | + "Programming Language :: Python :: 3.7", |
| 31 | + "Programming Language :: Python :: 3.8", |
| 32 | + "Programming Language :: Python :: 3.9", |
| 33 | + "Programming Language :: Python :: Implementation :: CPython", |
| 34 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 35 | + "Topic :: Software Development :: Libraries", |
| 36 | + "Topic :: System :: Distributed Computing", |
| 37 | + "Topic :: System :: Networking", |
| 38 | +] |
| 39 | + |
| 40 | +[project.optional-dependencies] |
| 41 | +testing = [ |
| 42 | + "pre-commit", |
| 43 | + "pytest", |
| 44 | + "tox", |
| 45 | + "hatch", |
| 46 | +] |
| 47 | + |
| 48 | +[project.urls] |
| 49 | +Homepage = "https://execnet.readthedocs.io/en/latest/" |
| 50 | + |
| 51 | +[tool.hatch.version] |
| 52 | +source = "vcs" |
| 53 | + |
| 54 | +[tool.hatch.build.hooks.vcs] |
| 55 | +version-file = "execnet/_version.py" |
| 56 | + |
| 57 | +[tool.hatch.build.targets.sdist] |
| 58 | +include = [ |
| 59 | + "/execnet", |
| 60 | +] |
0 commit comments