-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (50 loc) · 1.54 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name='nameko-wamp',
version='0.3.0',
description='WAMP extension for nameko',
long_description=long_description,
url='https://github.com/noisyboiler/nameko_wamp',
author='Simon Harrison',
author_email='noisyboiler@googlemail.com',
license='GNU GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='WAMP RPC',
packages=find_packages(),
install_requires=[
"eventlet==0.20.1",
"nameko==2.5.4",
"six==1.10.0",
"wampy==0.9.19",
],
extras_require={
'dev': [
"attrs==17.4.0", # fixes Linux/Pytest bug
"crossbar==0.15.0",
"autobahn==0.17.2",
"Twisted==17.9.0",
"pytest==3.1.3",
"mock==1.3.0",
"pytest-capturelog==0.7",
"colorlog",
"flake8==3.5.0",
"gevent-websocket==0.10.1",
"coverage>=3.7.1",
"Twisted==17.9.0",
]
},
entry_points={},
)