forked from rick446/mmm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.2 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
from setuptools import setup, find_packages
import os
version = '0.0.4'
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as fp:
long_description = fp.read()
setup(name='MongoMultiMaster',
version=version,
description="Multimaster replication for MongoDB",
long_description=long_description,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Utilities' ],
keywords='mongodb,replication',
author='Rick Copeland',
author_email='[email protected]',
url='https://github.com/rick446/mmm',
license='Apache License, Version 2.0',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'gevent',
'pymongo',
'pyyaml',
],
scripts=['scripts/mmm'],
entry_points="")