-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.cfg
74 lines (67 loc) · 1.53 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
[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
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>=0.10.0
wheel>=0.40.0
twine~=4.0
towncrier~=22.12
test =
pytest~=7.4.2
pytest-asyncio~=0.21
pytest-cov
pytest-mock
codecov
dev =
pre-commit
lint =
ruff>=0.1.15
ruff-lsp>=0.0.50
typecheck =
mypy~=1.8.0
docs =
sphinx~=4.3
sphinx-rtd-theme~=1.0
[options.packages.find]
where = src
[bdist_wheel]
universal = false
[tool:pytest]
testpaths = tests
[mypy]
mypy_path = src
[mypy-pytest.*]
ignore_missing_imports = true