forked from mongodb-labs/flask-pymongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (46 loc) · 1.6 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
48
49
50
51
52
53
"""
Flask-PyMongo
-------------
MongoDB support for Flask applications.
Flask-PyMongo is pip-installable:
$ pip install Flask-PyMongo
Documentation for Flask-PyMongo is available on `ReadTheDocs
<http://flask-pymongo.readthedocs.io/en/latest/>`_.
Source code is hosted on `GitHub <https://github.com/dcrosta/flask-pymongo>`_.
Contributions are welcome!
"""
from setuptools import find_packages, setup
setup(
name="Flask-PyMongo",
url="http://flask-pymongo.readthedocs.org/",
download_url="https://github.com/dcrosta/flask-pymongo/tags",
license="BSD",
author="Dan Crosta",
author_email="[email protected]",
description="PyMongo support for Flask applications",
long_description=__doc__,
zip_safe=False,
platforms="any",
packages=find_packages(),
install_requires=[
"Flask>=0.11",
"PyMongo>=3.0",
],
classifiers=[
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
],
setup_requires=["vcversioner"],
vcversioner={"version_module_paths": ["flask_pymongo/_version.py"]},
)