-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
42 lines (38 loc) · 1.16 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
from setuptools import setup, find_packages
with open('README.rst') as readme:
long_description = ''.join(readme).strip()
setup(
name='rsocks',
version='0.4.0',
author='Jiangge Zhang',
author_email='[email protected]',
description='A SOCKS reverse proxy server.',
long_description=long_description,
url='https://github.com/tonyseek/rsocks',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: PyPy',
],
packages=find_packages(),
platforms=['Any'],
install_requires=[
'PySocks>=1.7.1,<1.8',
'eventlet>=0.31,<0.34',
'click>=3.3,<3.4',
'toml.py>=0.1,<0.2',
'six',
],
entry_points={
'console_scripts': [
'rsocks=rsocks.cli:main',
],
},
)