-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
setup.py
54 lines (50 loc) · 1.57 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
54
"""
Flask-CKEditor
--------------
CKEditor integration for Flask, including image upload, code syntax
highlighting, and more.
Features:
* Integrate with Flask-WTF/WTForms.
* Configure CKEditor through Flask's configuration system.
* Image upload support.
* Code snippet highlighting.
* Built-in CKEditor resources.
"""
from setuptools import setup
setup(
name='Flask-CKEditor',
version='1.0.0',
url='http://github.com/helloflask/flask-ckeditor',
license='MIT',
author='Grey Li',
author_email='withlihui@gmail.com',
description='CKEditor integration for Flask.',
long_description=__doc__,
long_description_content_type='text/markdown',
packages=['flask_ckeditor'],
zip_safe=False,
include_package_data=True,
platforms='any',
test_suite='test_flask_ckeditor',
install_requires=[
'Flask'
],
extras_require={
'all': ['flask-wtf', 'bleach']
},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)