|
1 | 1 | [build-system]
|
2 |
| -requires = ["setuptools>=42.2", "setuptools_scm[toml]>=3.4.3"] |
| 2 | +requires = ["setuptools>=61.2", "setuptools_scm[toml]>=3.4.3"] |
3 | 3 | build-backend = "setuptools.build_meta"
|
4 | 4 |
|
| 5 | +[project] |
| 6 | +name = "sniffio" |
| 7 | +authors = [{ name = "Nathaniel J. Smith", email = "[email protected]"}] |
| 8 | +license = {text = "MIT OR Apache-2.0"} |
| 9 | +description = "Sniff out which async library your code is running under" |
| 10 | +readme = "README.rst" |
| 11 | +keywords = ["async", "trio", "asyncio"] |
| 12 | +classifiers = [ |
| 13 | + "License :: OSI Approved :: MIT License", |
| 14 | + "License :: OSI Approved :: Apache Software License", |
| 15 | + "Framework :: Trio", |
| 16 | + "Framework :: AsyncIO", |
| 17 | + "Operating System :: POSIX :: Linux", |
| 18 | + "Operating System :: MacOS :: MacOS X", |
| 19 | + "Operating System :: Microsoft :: Windows", |
| 20 | + "Programming Language :: Python :: 3 :: Only", |
| 21 | + "Programming Language :: Python :: Implementation :: CPython", |
| 22 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "Development Status :: 5 - Production/Stable", |
| 25 | +] |
| 26 | +urls = {Homepage = "https://github.com/python-trio/sniffio"} |
| 27 | +requires-python = ">=3.7" |
| 28 | +dynamic = ["version"] |
| 29 | + |
| 30 | +[project.optional-dependencies] |
| 31 | +testing = ["curio"] |
| 32 | + |
| 33 | +[tool.setuptools] |
| 34 | +include-package-data = false |
| 35 | + |
| 36 | +[tool.setuptools.packages] |
| 37 | +find = {namespaces = false} |
| 38 | + |
| 39 | +[tool.setuptools.package-data] |
| 40 | +sniffio = ["py.typed"] |
| 41 | + |
5 | 42 | [tool.setuptools_scm]
|
6 | 43 | write_to = "sniffio/_version.py"
|
7 | 44 | write_to_template = "__version__ = \"{version}\"\n"
|
|
0 commit comments