-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
50 lines (48 loc) · 1.61 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
[metadata]
name = concurrently
# version = < see setup.py >
description = Library helps easy write concurrent executed code blocks
long_description = file: README.rst
url = https://github.com/sirkonst/concurrently
author = Konstantin Enchant
author_email = [email protected]
maintainer = Konstantin Enchant
maintainer_email = [email protected]
keywords = concurrent, thread, threading, process, multiprocessing, asyncio, gevent
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Intended Audience :: Developers
Natural Language :: English
Natural Language :: Russian
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Software Development :: Libraries
[options]
python_requires = >=3.5
packages = find:
[options.extras_require]
gevent =
gevent; python_version < "3.8"
gevent>=1.5a2; python_version >= "3.8"
develop =
mypy~=1.4; python_version < "3.8"
mypy~=1.5; python_version >= "3.8"
wheel~=0.41
twine~=4.0
tox~=3.28; python_version < "3.8"
tox~=4.11; python_version >= "3.8"
pytest~=7.4
pytest-asyncio~=0.21
pylama~=8.4
coverage~=6.2; python_version < "3.8"
coverage~=7.3; python_version >= "3.8"
Sphinx~=5.3; python_version < "3.9"
Sphinx~=7.2; python_version >= "3.9"