-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (50 loc) · 1.61 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
# 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='Flask-WAMP',
version='0.1.0',
description='WAMP RPC and Pub/Sub for Flask',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/noisyboiler/flask-wamp',
author='Simon Harrison',
author_email='[email protected]',
license='BSD',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='WAMP RPC Flask',
packages=find_packages(),
install_requires=[
"Flask==1.0.2",
"wampy==0.9.20",
],
extras_require={
'dev': [
"crossbar==0.15.0",
"autobahn==0.17.2",
"Twisted==17.9.0",
"pytest==4.0.2",
"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",
],
},
)