forked from TyrantLucifer/ssr-command-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.5 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
import codecs
from setuptools import setup
with codecs.open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name="shadowsocksr-cli",
version="2.1.10",
author="tyrantlucifer",
author_email="[email protected]",
description="The command client of shadowsocksr",
url="https://github.com/tyrantlucifer/ssr-command-client",
packages=[
"shadowsocksr_cli",
"shadowsocksr_cli.shadowsocks",
"shadowsocksr_cli.shadowsocks.crypto",
"shadowsocksr_cli.shadowsocks.obfsplugin"
],
entry_points={
'console_scripts': [
'shadowsocksr-cli = shadowsocksr_cli.main:main'
]
},
install_requires=[
"requests",
"prettytable",
"PySocks",
"qrcode",
"pyyaml",
"colorama"
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'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',
'Topic :: Internet :: Proxy Servers',
],
long_description=long_description,
)