forked from rufuspollock/markdown2latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 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
from setuptools import setup
from mdx_latex import __version__, __doc__
setup(
name = 'markdown2latex',
version = __version__,
py_modules=['mdx_latex'],
entry_points='''
[console_scripts]
markdown2latex.py=mdx_latex:main
''',
install_requires=[
'Markdown==1.7',
],
# metadata for upload to PyPI
author = 'Rufus Pollock (Open Knowledge Foundation)',
url = 'http://www.okfn.org/okftext/',
author_email = 'rufus [at] rufuspollock [dot] org',
description = __doc__.split()[0],
long_description = __doc__,
license = 'MIT',
keywords = 'latex markdown python',
download_url = 'http://pypi.python.org/pypi/markdown2latex/',
zip_safe=False,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'],
)