-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aiosocketpool"
description = "An asyncio-compatible socket pool"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [
{ name = "Roo Sczesnak", email = "andrewscz@gmail.com" },
]
keywords = ["asyncio", "socketpool", "aiosocketpool"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
]
dynamic = ["version"]
[project.optional-dependencies]
testing = [
"black>=24.3.0",
"flake8>=3.7.8",
"mypy>=1.19.1",
"pip-tools>=4.2.0",
"pydocstyle>=4.0.0",
"pytest>=5.1.0",
"pytest-asyncio>=0.10.0",
]
[project.urls]
Homepage = "https://github.com/polyatail/aiosocketpool"
Repository = "https://github.com/polyatail/aiosocketpool"
[tool.setuptools.dynamic]
version = { attr = "aiosocketpool.version.__version__" }
[tool.setuptools.packages.find]
exclude = ["tests*", "test*"]