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.
 
 
 

21 lines
578 B

from setuptools import setup, find_packages
setup(
name = "shadowsocks",
version = "1.3.0",
license = 'MIT',
description = "a lightweight tunnel proxy",
author = 'clowwindy42@gmail.com',
url = 'https://github.com/clowwindy/shadowsocks',
packages = ['shadowsocks'],
package_data={
'shadowsocks': ['README.md', 'LICENSE', 'config.json']
},
install_requires = ['setuptools',
],
entry_points="""
[console_scripts]
sslocal = shadowsocks.local:main
ssserver = shadowsocks.server:main
""",
)