-
Notifications
You must be signed in to change notification settings - Fork 265
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (65 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
70 lines (65 loc) · 1.76 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 77.0.3"
]
[project]
name = "greenlet"
description = "Lightweight in-process concurrent programming"
readme = "README.rst"
authors = [
{ name = "Alexey Borzenkov", email = "snaury@gmail.com" },
]
maintainers = [
{ name = "Jason Madden", email = "jason@seecoresoftware.com" }
]
license = "MIT AND PSF-2.0"
license-files = [
'LICENSE',
'LICENSE.PSF',
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"greenlet",
"coroutine",
"concurrency",
"threads",
"cooperative",
]
requires-python = ">=3.10"
dynamic = ["version"]
[project.urls]
Homepage = "https://greenlet.readthedocs.io"
Documentation = "https://greenlet.readthedocs.io"
Repository = "https://github.com/python-greenlet/greenlet"
Issues = "https://github.com/python-greenlet/greenlet/issues"
Changelog = "https://greenlet.readthedocs.io/en/latest/changes.html"
[project.optional-dependencies]
docs = [
"Sphinx",
"furo",
]
test = [
"objgraph",
"psutil",
"setuptools",
]
[tool.setuptools.dynamic]
version = {attr = "greenlet.__version__"}
[tool.zest-releaser]
python-file-with-version = "src/greenlet/__init__.py"
create-wheel = false