-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
31 lines (28 loc) · 963 Bytes
/
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
from setuptools import setup, find_packages
from nameko_proxy import __version__
setup(
name='nameko-proxy',
version=__version__,
author='Sergey Suglobov',
author_email='s.suglobov@gmail.com',
packages=find_packages(),
keywords="nameko, standalone, proxy",
url='https://github.com/fraglab/nameko-proxy',
description='Standalone async proxy to communicate with Nameko microservices ',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only'
],
install_requires=[
'setuptools',
'nameko'
]
)