shadowsocks/setup.py

34 lines
923 B
Python
Raw Normal View History

2014-04-23 08:31:17 +00:00
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
2013-06-22 09:30:31 +00:00
setup(
2014-04-23 08:31:17 +00:00
name="shadowsocks",
2014-09-14 02:06:16 +00:00
version="2.2.2",
2014-04-23 08:31:17 +00:00
license='MIT',
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',
url='https://github.com/clowwindy/shadowsocks',
packages=['shadowsocks'],
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
""",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: Proxy Servers',
2014-04-23 08:31:17 +00:00
],
long_description=long_description,
2013-06-22 09:30:31 +00:00
)