-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.cfg
75 lines (68 loc) · 1.58 KB
/
setup.cfg
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
71
72
73
74
75
[metadata]
name=aiotools
version=attr: aiotools.__version__
author=Joongi Kim
long_description=file: README.md, CHANGES.md
long_description_content_type=text/markdown
description=Idiomatic asyncio utilities
license=MIT
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Intended Audience :: Developers
Framework :: AsyncIO
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Software Development
url = https://github.com/achimnol/aiotools
project_urls =
Documentation = https://aiotools.readthedocs.io
Tracker = https://github.com/achimnol/aiotools/issues
Source = https://github.com/achimnol/aiotools
Code Coverage = https://codecov.io/github/achimnol/aiotools
platforms =
any
[options]
package_dir =
= src
packages = find:
python_requires = >=3.11
install_requires =
zip_safe = false
include_package_data = true
[options.extras_require]
build =
build>=1.2.2
wheel>=0.45.1
twine~=6.0
towncrier~=24.8
test =
pytest~=8.3.4
pytest-asyncio~=0.25.2
pytest-cov
pytest-mock
codecov
dev =
pre-commit
lint =
ruff>=0.9.2
ruff-lsp>=0.0.60
typecheck =
mypy~=1.14.1
docs =
sphinx~=8.1.3
sphinx-rtd-theme~=3.0.2
[options.packages.find]
where = src
[bdist_wheel]
universal = false
[tool:pytest]
testpaths = tests
[mypy]
mypy_path = src
[mypy-pytest.*]
ignore_missing_imports = true