-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathsetup.py
35 lines (30 loc) · 1.05 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
#!/usr/bin/env python
from setuptools import setup, find_packages
__version__ = "#.#.#"
def readme():
with open("README.rst") as f:
return f.read()
setup(
name='mongodb-consistent-backup',
version=__version__,
license="ASL-2",
description='Tool for getting consistent backups from MongoDB Clusters and ReplicaSet',
long_description=readme(),
author='Percona-Lab',
author_email='tim.vaillancourt@percona.com',
url='https://github.com/Percona-Lab/mongodb_consistent_backup',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators' ,
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Database',
'Topic :: System :: Archiving :: Backup',
'Topic :: System :: Recovery Tools',
'Topic :: System :: Systems Administration',
'Topic :: Utilities'
]
)