-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 843 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
27
28
29
from setuptools import setup
import os
import io
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = '\n' + f.read()
setup(
name='aiowstunnel',
description='Persistent and reliable TCP tunneling on websockets '
'based on asyncio',
version='0.4.3',
url='https://github.com/richardbann/aiowstunnel',
author='Richard Bann',
author_email='[email protected]',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6'
],
keywords='tunneling TCP websocket',
install_requires=[
'websockets >= 3.4'
],
package_data={'aiowstunnel': ['resources/static/*/*', 'resources/*.*']},
license='MIT',
packages=['aiowstunnel'],
)