-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 938 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
from setuptools import setup
setup(
name="doctor_leipzig",
version="2.0",
description="Interlinear (Leipzig Rules) glossing for Markdown",
long_description="Doctor Lepizig is a set of additional Markdown syntax items that help with constructing interlinear glosses within Markdown pages. Please see the README or website for full API.",
url="https://github.com/parryc/doctor_leipzig",
py_modules=["doctor_leipzig"],
packages=["doctor_leipzig"],
license="MIT",
author="parryc",
author_email="parry@parryc.com",
keywords="interlinear leipzig glossing gloss markdown",
install_requires=["markdown>=3.3.3"],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Markup :: HTML",
],
)