forked from brmullikin/flask-markdown
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (40 loc) · 1.42 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
"""
Flask-Markdown is a markdown processing filter for Flask.
This is a maintenance fork of maintenance fork of Flask-Markdown.
This project can be found at: https://github.com/fili/flask-markdown
The original is at: http://github.com/dcolish/flask-markdown
and https://github.com/brmullikin/flask-markdown
The goal of this fork is to eventually get merged back into the original.
"""
from setuptools import setup
setup(
name='Flask-MD',
version='0.4.1',
url='http://github.com/fili/flask-markdown',
license='BSD',
author='Dan Colish (author), B. R. Mullikin (forker), Fili Wiese (forker of forker)',
description='Small extension to make using markdown easy in Flask in Python3.5+.',
long_description=__doc__,
packages=['flask_markdown'],
zip_safe=False,
platforms='any',
install_requires=[
'Flask',
'Markdown',
],
tests_require=[
'pytest',
'pytest-flask'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)