forked from j0ack/flask-codemirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.25 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
"""
flask-codemirror
----------------
Add a source code field for Flask using Javascript library CodeMirror
and Fields with WTForms
"""
from setuptools import setup
__version__ = "1.3"
__author__ = "TROUVERIE Joachim"
__contact__ = "[email protected]"
setup(
name="flask-codemirror",
version=__version__,
url="https://github.com/j0ack/flask-codemirror",
license="GPL",
author=__author__,
author_email=__contact__,
description="Use CodeMirror Javascript library with Flask-WTF",
include_package_data=True,
long_description=open("README.rst").read(),
packages=["flask_codemirror"],
zip_safe=False,
platforms="any",
install_requires=["Flask", "WTForms", "requests"],
tests_require=["Flask-WTF"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Framework :: Flask",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
)