-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
61 lines (55 loc) · 2.15 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
#!/usr/bin/env python3
from os import path
from setuptools import setup, find_packages
__folder__ = path.abspath(path.dirname(__file__))
with open(path.join(__folder__, 'README.md')) as readme_file:
long_description = readme_file.read()
about = {}
with open(path.join(__folder__, 'requests_raw', '__version__.py')) as about_file:
exec(about_file.read(), about)
with open(path.join(__folder__, 'requirements.txt')) as req_file:
install_requires = req_file.readlines()
setup(
name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
long_description=long_description,
long_description_content_type='text/markdown',
author=about['__author__'],
author_email=about['__author_email__'],
packages=find_packages(exclude=['examples', 'tests']),
python_requires=">=3.7",
install_requires=install_requires,
license=about['__license__'],
platforms='any',
url='https://github.com/realgam3/requests-raw',
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
"Environment :: Web Environment",
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
extras_require={
"security": [],
"socks": ["PySocks>=1.5.6, !=1.5.7"],
"use_chardet_on_py3": ["chardet>=3.0.2,<6"],
},
project_urls={
'Source': 'https://github.com/realgam3/requests-raw',
},
)