forked from DoubleCiti/mongodb-migrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (44 loc) · 1.63 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
47
import sys
from setuptools import setup, find_packages
install_requires = [
'pymongo>=3.2.1',
'configparser>=3.5.0'
]
if sys.version_info < (3, 4):
# Backport of Python 3.4 enums to earlier versions
# reference: https://github.com/donnemartin/saws/commit/f109bc8f534905797ee44239cb766ea3de4ceb5d
# credit to [donnemartin](https://github.com/donnemartin) and [geraldlnj](https://github.com/geraldlnj
install_requires.append('enum34>=1.1.6')
setup(
name='mongodb-migrations',
version='1.0.1',
description='A database migration tool for MongoDB',
long_description=__doc__,
url='https://github.com/DoubleCiti/mongodb-migrations',
author='David Xie',
author_email='david30xie@gmail.com',
license='GPLv3',
packages=find_packages(),
platforms='any',
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points={
'console_scripts': ['mongodb-migrate=mongodb_migrations.cli:main'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)