-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
52 lines (46 loc) · 1.38 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
"""
Flask-Admin
-----------
Flask-Admin is a Flask extension module that aims to be a flexible,
customizable web-based interface to your datastore.
Links
`````
* `documentation <http://packages.python.org/Flask-Admin>`_
* `development version
<http://github.com/wilsaj/flask-admin/zipball/master#egg=Flask-Admin-dev>`_
"""
from setuptools import setup
setup(
name='Flask-Admin',
version='0.4.2',
url='https://github.com/wilsaj/flask-admin/',
license='BSD',
author='Andy Wilson',
author_email='[email protected]',
description='Flask extenstion module that provides an admin interface',
long_description=__doc__,
packages=['flask_admin'],
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'Flask>=0.7',
'wtforms>=0.6.3',
],
test_suite='test_admin.suite',
tests_require=[
'Flask-SQLAlchemy>=0.12',
'Flask-Testing>=0.3',
'MongoAlchemy>=0.10',
],
classifiers=[
'Development Status :: 4 - Beta',
'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'
]
)