-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
53 lines (45 loc) · 1.45 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
# -*- coding: utf-8 -*-
# Copyright 2015 flask-mongoalchemy authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
"""
Flask MongoAlchemy
------------------
Adds Flask support for MongoDB using Mongo-Alchemy.
Links
`````
* `documentation <https://pythonhosted.org/Flask-MongoAlchemy>`_
* `development version
<http://github.com/cobrateam/flask-mongoalchemy/zipball/master#egg=Flask-MongoAlchemy-dev>`_
"""
from setuptools import setup
readme = __doc__
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='Flask-MongoAlchemy',
version='0.7.2',
url='http://github.com/cobrateam/flask-mongoalchemy',
license='BSD',
author='Francisco Souza',
author_email='francisco@franciscosouza.net',
description='Add Flask support for MongoDB using MongoAlchemy.',
long_description=readme,
packages=['flask_mongoalchemy'],
zip_safe=False,
platforms='any',
install_requires=[
'Flask>=0.9',
'MongoAlchemy==0.19',
'pymongo==2.8.1',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)