forked from MongoEngine/marshmallow-mongoengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.36 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
def read(fname):
with open(fname) as fp:
content = fp.read()
return content
setup(
name='marshmallow-mongoengine',
version='0.10.0',
description='Mongoengine integration with the marshmallow '
'(de)serialization library',
long_description=read('README.rst'),
author='Emmanuel Leblond',
author_email='[email protected]',
url='https://github.com/touilleMan/marshmallow-mongoengine',
packages=find_packages(exclude=("test*", )),
package_dir={'marshmallow-mongoengine': 'marshmallow-mongoengine'},
include_package_data=True,
install_requires=['mongoengine>=0.9.0'],
extras_require={
'toasted': ['toastedmarshmallow>=0.2.6'],
'marshmallow': ['marshmallow>=2.1.0'],
},
license='MIT',
zip_safe=False,
keywords='mongoengine marshmallow',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
test_suite='tests',
)