forked from ajtulloch/LaTeX2Markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 967 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
setup(
name='latex2markdown',
author="Andrew Tulloch",
author_email="andrew@tullo.ch",
version='0.2.1',
py_modules=['latex2markdown'],
scripts=['bin/converted_latex_sample.md','bin/latex_sample.tex'],
url="https://github.com/ajtulloch/LaTeX2Markdown",
description="An AMS-LaTeX compatible converter that maps a subset of LaTeX to Markdown/MathJaX.",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: LaTeX",
"Topic :: Text Processing :: Markup :: HTML"
],
long_description=open("README.txt").read()
)