-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 1011 Bytes
/
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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='jingo-markdown',
version="1.3",
description='Jingo (Jinja2) extension and filter for parse markdown text markup.',
author='Prahlad Nrsimha Das (Petr Vacha) - Mayapur Media',
author_email='[email protected]',
url='https://github.com/mayapurmedia/jingo-markdown',
install_requires=['Markdown'],
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Code Generators',
'Topic :: Text Processing :: Markup',
],
include_package_data=True,
zip_safe=False,
)