forked from asteven/nameko-consul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 909 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
from setuptools import setup, find_packages
name = 'nameko-consul'
setup(
name=name,
version='0.1.0',
description='Consul dependency for nameko services',
author='Steven Armstrong',
author_email='steven-%s@armstrong.cc' % name,
url='http://github.com/asteven/nameko-consul',
packages=find_packages(),
install_requires=[
'nameko',
'python-consul',
],
license='GNU General Public License v3 or later (GPLv3+)',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
)