forked from zabertech/python-swampyer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (23 loc) · 731 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (23 loc) · 731 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
#!/usr/bin/python
from setuptools import setup, find_packages
setup(name='swampyer',
version='1.20190905',
description='Simple WAMP library with minimal external dependencies',
url = 'https://github.com/zabertech/python-swampyer',
download_url = 'https://github.com/zabertech/python-swampyer/archive/1.20190730.tar.gz',
author='Aki Mimoto',
author_email='aki+swampyer@zaber.com',
license='MIT',
packages=['swampyer'],
scripts=[],
test_suite='tests',
extras_requires={
'dev': ["crossbar"],
},
install_requires=[
'websocket-client',
'six',
'setuptools',
],
dependency_links=[],
zip_safe=False)