forked from bakwc/PySyncObj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.15 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
from distutils.core import setup
description='A library for replicating your python class between multiple servers, based on raft protocol'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError, RuntimeError):
long_description = description
setup(
name='pysyncobj',
packages=['pysyncobj', 'pysyncobj.pysyncobj3'],
version='0.2.0',
description=description,
long_description=long_description,
author='Filipp Ozinov',
author_email='[email protected]',
url='https://github.com/bakwc/PySyncObj',
download_url='https://github.com/bakwc/PySyncObj/tarball/0.2.0',
keywords=['network', 'replication', 'raft', 'synchronization'],
classifiers=[
'Topic :: System :: Networking',
'Topic :: System :: Distributed Computing',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'License :: OSI Approved :: MIT License',
],
)