forked from foodaemon/mongobackup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 888 Bytes
/
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
from setuptools import setup
import mongobackup
setup(name='mongobackup',
version=mongobackup.__version__,
description=mongobackup.__description__,
author=mongobackup.__author__,
url='https://github.com/robintiwari/mongobackup',
license=mongobackup.__license__,
platforms=['all'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: Jython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: MongoDB backup and restore utility',
],
py_modules=['mongobackup'],
)