-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
executable file
·26 lines (24 loc) · 988 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python3
from setuptools import setup, find_packages
import wstan
setup(name='wstan',
version=wstan.__version__,
description='Tunneling TCP in WebSocket',
author='krrr',
author_email='[email protected]',
url='https://github.com/krrr/wstan',
license='MIT',
keywords='proxy tunnel websocket',
packages=find_packages(),
install_requires=['cryptography'],
extras_require={'advanced_web_log_viewer': ['jinja2']},
classifiers=[
'Topic :: Internet :: Proxy Servers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only'],
entry_points={'console_scripts': ['wstan = wstan:main_entry']})