forked from andrivet/wagtail-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (40 loc) · 1.35 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
#! /usr/bin/env/python
# vim:sw=4 ts=4 et:
#
# Copyright (c) 2015 Torchbox Ltd.
# [email protected] 2015-09-14
#
# Permission is granted to anyone to use this software for any purpose,
# including commercial applications, and to alter it and redistribute it
# freely. This software is provided 'as-is', without any express or implied
# warranty.
#
from setuptools import setup, find_packages
setup(
name='wagtail-markdown',
version='0.5.0',
description='Markdown support for Wagtail',
long_description="Provides Markdown page field and streamfield block for Wagtail. More info: "
"https://github.com/andrivet/wagtail-markdown/blob/master/README.md",
author='Felicity Tarnell',
author_email='[email protected]',
url='https://github.com/andrivet/wagtail-markdown',
install_requires=[
'Markdown==2.6.7',
'bleach==1.5.0', 'django',
],
license='zlib license',
packages=find_packages(),
include_package_data=True,
package_data={
'wagtailmarkdown': ['static/wagtailmarkdown/*/*'],
},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'License :: OSI Approved :: zlib/libpng License',
],
)