move to pypi

This commit is contained in:
clowwindy 2013-06-22 17:30:31 +08:00
parent da3981ac23
commit 794ff240a6
10 changed files with 169 additions and 62 deletions

21
setup.py Normal file
View file

@ -0,0 +1,21 @@
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
""",
)