forked from dcolish/flask-markdown
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
44 lines (39 loc) · 1.32 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
"""
Flask-Markdown is a markdown processing filter for Flask.
This is a maintenance fork of Flask-Markdown.
This project can be found at: https://github.com/brmullikin/flask-markdown
The original is at: http://github.com/dcolish/flask-markdown
The goal of this fork is to eventually get merged back into the original.
"""
from setuptools import setup
setup(
name='Flask-Markdown',
version='0.4',
url='http://github.com/brmullikin/flask-markdown',
license='BSD',
author='Dan Colish (author), B. R. Mullikin (forker)',
author_email='[email protected] (author), [email protected] (forker)',
description='Small extension to make using markdown easy',
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'
],
)