forked from cocagne/python-composable-paxos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·31 lines (26 loc) · 1.12 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
#!/usr/bin/env python
VERSION = '1.0.0'
DESCRIPTION = 'Implements the core Paxos algorithm as a set of composable classes'
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 'composable_paxos',
version = VERSION,
description = DESCRIPTION,
license = "MIT",
long_description = "Implements the core Paxos algorithm as a set of composable classes",
url = 'https://github.com/cocagne/python-composable-paxos',
author = "Tom Cocagne",
author_email = '[email protected]',
provides = ['composable_paxos'],
py_modules = ['composable_paxos'],
keywords = ['paxos'],
classifiers = ['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Networking'],
)