move to pypi
This commit is contained in:
parent
da3981ac23
commit
794ff240a6
10 changed files with 169 additions and 62 deletions
21
setup.py
Normal file
21
setup.py
Normal 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
|
||||
""",
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue