shadowsocks/setup.py

40 lines
1.2 KiB
Python
Raw Normal View History

import codecs
2014-04-23 16:31:17 +08:00
from setuptools import setup
with codecs.open('README.rst', encoding='utf-8') as f:
long_description = f.read()
2013-06-22 17:30:31 +08:00
setup(
2014-04-23 16:31:17 +08:00
name="shadowsocks",
2014-11-02 00:10:06 +08:00
version="2.4.1",
2014-04-23 16:31:17 +08:00
license='MIT',
2014-06-05 21:02:25 +08:00
description="A fast tunnel proxy that help you get through firewalls",
2014-04-23 16:31:17 +08:00
author='clowwindy',
author_email='clowwindy42@gmail.com',
url='https://github.com/clowwindy/shadowsocks',
packages=['shadowsocks', 'shadowsocks.crypto'],
2013-06-22 17:30:31 +08:00
package_data={
2014-07-12 11:11:28 +08:00
'shadowsocks': ['README.rst', 'LICENSE']
2013-06-22 17:30:31 +08:00
},
2014-06-01 11:22:57 +08:00
install_requires=[],
2013-06-22 17:30:31 +08: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',
2014-10-31 18:32:04 +08: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',
'Topic :: Internet :: Proxy Servers',
2014-04-23 16:31:17 +08:00
],
long_description=long_description,
2013-06-22 17:30:31 +08:00
)