shadowsocks/setup.py

35 lines
970 B
Python
Raw Normal View History

from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
2013-06-22 09:30:31 +00:00
setup(
name = "shadowsocks",
2013-07-09 12:53:38 +00:00
version = "1.3.3",
2013-06-22 09:30:31 +00:00
license = 'MIT',
description = "a lightweight tunnel proxy",
author = 'clowwindy',
author_email = 'clowwindy42@gmail.com',
2013-06-22 09:30:31 +00:00
url = 'https://github.com/clowwindy/shadowsocks',
packages = ['shadowsocks'],
package_data={
'shadowsocks': ['README.rst', 'LICENSE', 'config.json']
2013-06-22 09:30:31 +00:00
},
install_requires = ['setuptools',
],
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',
],
long_description=long_description,
2013-06-22 09:30:31 +00:00
)