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.
22 lines
578 B
22 lines
578 B
12 years ago
|
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
|
||
|
""",
|
||
|
)
|