forked from noisyboiler/wampy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
72 lines (65 loc) · 2.12 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
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='wampy',
version='0.9.17',
description='WAMP RPC and Pub/Sub for python apps and microservices',
long_description=long_description,
url='https://github.com/noisyboiler/wampy',
author='Simon Harrison',
author_email='noisyboiler@googlemail.com',
license='Mozilla Public License 2.0',
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",
"six==1.10.0",
"simplejson==3.11.1",
"gevent>1.1", # fixes infinite SSL recursion bug
],
extras_require={
'dev': [
"crossbar==0.15.0",
"autobahn==0.17.2",
"Twisted==17.9.0",
"pytest==3.1.3",
"mock==1.3.0",
"pytest==2.9.1",
"pytest-capturelog==0.7",
"colorlog",
"flake8==3.5.0",
"gevent-websocket==0.10.1",
"coverage>=3.7.1",
"Twisted==17.9.0",
],
'docs': [
"Sphinx==1.4.5",
"guzzle_sphinx_theme",
],
},
entry_points={
'console_scripts': [
'wampy=wampy.cli.main:main',
],
# pytest looks up the pytest11 entrypoint to discover its plugins
'pytest11': [
'pytest_wampy=wampy.testing.pytest_plugin',
]
},
)