Python port of ShadowsocksR
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.2 KiB

import codecs
11 years ago
from setuptools import setup
with codecs.open('README.rst', encoding='utf-8') as f:
long_description = f.read()
11 years ago
setup(
11 years ago
name="shadowsocks",
10 years ago
version="2.6.6",
11 years ago
license='MIT',
10 years ago
description="A fast tunnel proxy that help you get through firewalls",
11 years ago
author='clowwindy',
author_email='clowwindy42@gmail.com',
url='https://github.com/shadowsocks/shadowsocks',
packages=['shadowsocks', 'shadowsocks.crypto'],
11 years ago
package_data={
'shadowsocks': ['README.rst', 'LICENSE']
11 years ago
},
10 years ago
install_requires=[],
11 years ago
entry_points="""
[console_scripts]
sslocal = shadowsocks.local:main
ssserver = shadowsocks.server:main
""",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
10 years ago
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: Proxy Servers',
11 years ago
],
long_description=long_description,
11 years ago
)