-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 964 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: tabstop=4 shiftwidth=4 softtabstop=4
from setuptools import find_packages
from setuptools import setup
setup(
name='microhackaton-service-discovery-py',
version='0.0.7',
description='A python package that works to provide service registration and discovery for http://microhackaton.github.io/2014/',
author="Kamil Chmielewski",
author_email='[email protected]',
url='https://github.com/microhackaton/service-discovery-py',
license="ASL 2.0",
install_requires=[
'kazoo',
],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
],
keywords="kazoo service discovery zookeeper",
packages=find_packages(),
long_description=open("README.rst", "r").read(),
)