-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·48 lines (43 loc) · 1.3 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
#!/usr/bin/env python
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as handle:
long_description = handle.read()
setup(
name='nameko-socket-server',
version='0.1.1',
description='Socket server entrypoints for nameko services',
long_description=long_description,
author='onefinestay',
author_email='[email protected]',
url='http://github.com/onefinestay/nameko-socket-server',
py_modules=['nameko_socket_server'],
install_requires=[
"nameko>=2.0.0",
],
extras_require={
'dev': [
"coverage==4.0a5",
"flake8==2.1.0",
"mccabe==0.3",
"pep8==1.6.1",
"pyflakes==0.8.1",
"pylint==1.0.0",
"pytest==2.4.2",
"pytest-timeout==0.4",
]
},
dependency_links=[],
zip_safe=True,
license='Apache License, Version 2.0',
classifiers=[
"Programming Language :: Python",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
)