2014-11-01 14:48:22 +00:00
|
|
|
import codecs
|
2014-04-23 08:31:17 +00:00
|
|
|
from setuptools import setup
|
2013-06-22 11:02:43 +00:00
|
|
|
|
|
|
|
|
2014-11-01 14:48:22 +00:00
|
|
|
with codecs.open('README.rst', encoding='utf-8') as f:
|
2013-06-22 11:02:43 +00:00
|
|
|
long_description = f.read()
|
2013-06-22 09:30:31 +00:00
|
|
|
|
|
|
|
setup(
|
2014-04-23 08:31:17 +00:00
|
|
|
name="shadowsocks",
|
2017-03-04 06:37:29 +00:00
|
|
|
version="3.0.0",
|
2015-02-03 06:10:36 +00:00
|
|
|
license='http://www.apache.org/licenses/LICENSE-2.0',
|
2014-06-05 13:02:25 +00:00
|
|
|
description="A fast tunnel proxy that help you get through firewalls",
|
2014-04-23 08:31:17 +00:00
|
|
|
author='clowwindy',
|
|
|
|
author_email='clowwindy42@gmail.com',
|
2014-12-27 15:29:48 +00:00
|
|
|
url='https://github.com/shadowsocks/shadowsocks',
|
2014-09-16 02:58:45 +00:00
|
|
|
packages=['shadowsocks', 'shadowsocks.crypto'],
|
2013-06-22 09:30:31 +00:00
|
|
|
package_data={
|
2014-07-12 03:11:28 +00:00
|
|
|
'shadowsocks': ['README.rst', 'LICENSE']
|
2013-06-22 09:30:31 +00:00
|
|
|
},
|
2014-06-01 03:22:57 +00:00
|
|
|
install_requires=[],
|
2013-06-22 09:30:31 +00:00
|
|
|
entry_points="""
|
|
|
|
[console_scripts]
|
|
|
|
sslocal = shadowsocks.local:main
|
|
|
|
ssserver = shadowsocks.server:main
|
|
|
|
""",
|
2013-06-22 11:02:43 +00:00
|
|
|
classifiers=[
|
2015-02-03 06:10:36 +00:00
|
|
|
'License :: OSI Approved :: Apache Software License',
|
2013-06-22 11:02:43 +00:00
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2014-10-31 10:32:04 +00:00
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
2013-06-22 11:02:43 +00:00
|
|
|
'Topic :: Internet :: Proxy Servers',
|
2014-04-23 08:31:17 +00:00
|
|
|
],
|
2013-06-22 11:02:43 +00:00
|
|
|
long_description=long_description,
|
2013-06-22 09:30:31 +00:00
|
|
|
)
|