-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
40 lines (37 loc) · 1.13 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
import os
import re
import sys
from setuptools import setup
from setuptools import find_packages
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
]
setup(
name='concoord',
version='1.1.0',
author='Deniz Altinbuken, Emin Gun Sirer',
author_email='[email protected], [email protected]',
packages=find_packages(),
license='3-Clause BSD',
url='http://openreplica.org/',
description='Coordination service for distributed systems.',
long_description=open('README').read(),
classifiers=classifiers,
entry_points={
'console_scripts': ['concoord = concoord.main:main',
'openreplica = concoord.openreplica.main:main']
},
install_requires=[
'python>=2.7',
'msgpack-python',
'dnspython',
],
)