-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (30 loc) · 1.05 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
""" Setup Django-Markdownplus """
import os
from setuptools import setup, find_packages
def reads(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
setup(
name='django_markdownplus',
version='0.1.2',
description='tiny django app for supporting markdown template tag',
long_description=reads('README.rst'),
license=reads('LICENSE'),
author="makerj",
author_email="[email protected]",
url="https://github.com/makerj/django_markdownplus",
keywords='html markdown django media',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python',
'Topic :: Software Development :: Code Generators',
'Topic :: Text Processing :: Markup',
],
packages=find_packages(),
install_requires=['django', 'markdown', 'bleach'],
)