forked from MongoEngine/eve-mongoengine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·36 lines (31 loc) · 990 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
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
from setuptools import setup
__version__ = "1.46.0"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="Eve-Mongoengine2",
version=__version__,
url="https://github.com/wangsha/eve-mongoengine",
author="Wang Sha",
description="An Eve extension for Mongoengine ODM support",
packages=["eve_mongoengine"],
zip_safe=False,
test_suite="tests",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
platforms="any",
install_requires=["Eve", "Mongoengine", "blinker"],
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">3",
package_data={
# If any package contains *.txt or *.rst files, include them:
"": ["*.md"],
},
)