-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathsetup.py
59 lines (55 loc) · 1.78 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
from setuptools import find_packages, setup
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Twisted",
"Programming Language :: Python",
"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 :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
if __name__ == "__main__":
with open('README.rst') as f:
readme = f.read()
setup(
name="treq",
packages=find_packages('src'),
package_dir={"": "src"},
setup_requires=["incremental"],
use_incremental=True,
python_requires='>=3.6',
install_requires=[
"incremental",
"requests >= 2.1.0",
"hyperlink >= 21.0.0",
"Twisted[tls] >= 18.7.0",
"attrs",
],
extras_require={
"dev": [
"pep8",
"pyflakes",
"httpbin==0.5.0",
],
"docs": [
"sphinx>=1.4.8",
],
},
package_data={"treq": ["_version"]},
author="David Reid",
author_email="[email protected]",
maintainer="Tom Most",
maintainer_email="[email protected]",
classifiers=classifiers,
description="High-level Twisted HTTP Client API",
license="MIT/X",
url="https://github.com/twisted/treq",
long_description=readme,
long_description_content_type='text/x-rst',
)