-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
46 lines (38 loc) · 1.6 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
41
42
43
44
45
46
#!/usr/bin/env python
from sys import version_info as version
from setuptools import setup, find_packages
exclude = ['docs', 'tests']
if version.major < 3 or (version.major == 3 and version.minor < 4):
exclude += ['zatt.server']
entry_points = {}
else:
entry_points = {'console_scripts': ['zattd=zatt.server.main:run']}
setup(name='Zatt',
version='1.0',
description='Implementation of the Raft algorithm for distributed consensus',
author='Simone Accascina',
author_email='simon@accascina.me',
url='https://github.com/simonacca/zatt',
license='GPL',
keywords='distributed consensus raft',
classifiers=[
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Distributed Systems :: Consens Algorithms',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GPL License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
# packages = ['zatt.client'],
packages=find_packages(exclude=exclude),
install_requires=['msgpack-python'],
entry_points=entry_points,
)