-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.24 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ProxyPatternPool"
version = "11.4"
authors = [ { name = "Fabien Coelho", email = "[email protected]" } ]
description = "Generic Proxy and Pool Classes for Python"
readme = "README.md"
license = { text = "CC0" }
requires-python = ">= 3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
repository = "https://github.com/zx80/proxy-pattern-pool"
documentation = "https://zx80.github.io/proxy-pattern-pool/"
issues = "https://github.com/zx80/proxy-pattern-pool/issues"
package = "https://pypi.org/project/ProxyPatternPool/"
[tool.setuptools]
py-modules = [ "ProxyPatternPool" ]
[project.optional-dependencies]
local = [
"werkzeug",
"eventlet",
# NOTE not supported on 2025-03-06
"gevent; python_version < '3.13'"
]
dev = [ "mypy", "pyright", "flake8", "black", "ruff", "pytest", "coverage", "pymarkdownlnt" ]
doc = [ "mkdocs", "mkdocs-material", "mkdocstrings[python]" ]
pub = [ "build", "wheel", "twine" ]