-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 929 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 929 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='requests_httpsproxy',
version='1.0.6',
description='allow http/https requests through https proxy',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
],
keywords='requests https-proxy',
url='https://github.com/phuslu/requests_httpsproxy',
license='MIT',
author='Phus Lu',
author_email='phuslu@hotmail.com',
packages=find_packages(),
install_requires=[
'requests>=2.13.0',
'pyOpenSSL>=0.11',
'tlslite-ng'
],
platforms='any',
include_package_data=True,
zip_safe=True,
)