forked from mosquito/aio-pika
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (60 loc) · 2 KB
/
setup.py
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
import os
from setuptools import setup, find_packages
from importlib.machinery import SourceFileLoader
module = SourceFileLoader(
"version", os.path.join("aio_pika", "version.py")
).load_module()
setup(
name="aio-pika",
version=module.__version__,
author=module.__author__,
author_email=module.team_email,
license=module.package_license,
description=module.package_info,
long_description=open("README.rst").read(),
platforms="all",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Microsoft",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
],
packages=find_packages(exclude=["tests"]),
package_data={"aio_pika": ["py.typed"]},
install_requires=["aiormq~=6.2.3", "yarl"],
python_requires=">3.6, <4",
extras_require={
"develop": [
"aiomisc~=15.6.8",
"coverage!=4.3",
"coveralls",
"pylava",
"pytest",
"pytest-cov",
"shortuuid",
"nox",
"sphinx",
"sphinx-autobuild",
"timeout-decorator",
"tox>=2.4",
],
},
project_urls={
"Documentation": "https://aio-pika.readthedocs.org/",
"Source": "https://github.com/mosquito/aio-pika",
},
)