-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
40 lines (35 loc) · 1.02 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
# -*- coding: utf-8 -*-
import re
from setuptools import setup, find_packages
REQUIRES = (
'pymongo>=2.8'
)
def read(fname):
with open(fname) as fp:
content = fp.read()
return content
setup(
name='mongopatcher',
version='0.3.2',
description='Mongodb incremental migration tool',
long_description=read('README.rst'),
author='Emmanuel Leblond',
author_email='[email protected]',
url='https://github.com/touilleMan/mongopatcher',
packages=find_packages(exclude=("test*", )),
package_dir={'mongopatcher': 'mongopatcher'},
include_package_data=True,
install_requires=REQUIRES,
license='MIT',
zip_safe=False,
keywords='mongoengine',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
test_suite='tests',
)