-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (25 loc) · 757 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·28 lines (25 loc) · 757 Bytes
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
#!/usr/bin/env python
from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = ['websockets>=9.1']
setup(
name='tabby-connection-gateway',
version='0.3.0',
author='Eugene Pankov',
author_email='e@ajenti.org',
python_requires='>=3.6',
entry_points={
'console_scripts': [
'tabby-connection-gateway=tabby_connection_gateway.cli:main',
],
},
install_requires=requirements,
license='MIT license',
long_description=readme,
long_description_content_type='text/markdown',
include_package_data=True,
keywords='tabby',
packages=['tabby_connection_gateway'],
url='https://github.com/eugeny/tabby-connection-gateway',
)