-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
49 lines (44 loc) · 1.54 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = [
"setuptools >= 64",
"setuptools_scm >= 6.4"
]
build-backend = "setuptools.build_meta"
[project]
name = "sniffio"
description = "Sniff out which async library your code is running under"
readme = "README.rst"
authors = [{name = "Nathaniel J. Smith", email = "[email protected]"}]
license = {text = "MIT OR Apache-2.0"}
keywords = ["async", "trio", "asyncio"]
classifiers = [
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Framework :: Trio",
"Framework :: AsyncIO",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
]
requires-python = ">= 3.7"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/python-trio/sniffio"
Documentation = "https://sniffio.readthedocs.io/"
Changelog = "https://sniffio.readthedocs.io/en/latest/history.html"
[tool.setuptools.dynamic]
version = {attr = "sniffio._version.__version__"}
[tool.setuptools.packages.find]
include = ["sniffio*"]
namespaces = false
[tool.towncrier]
package = "sniffio"
filename = "docs/source/history.rst"
directory = "newsfragments"
underlines = ["-", "~", "^"]
issue_format = "`#{issue} <https://github.com/python-trio/sniffio/issues/{issue}>`__"