-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.09 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
import setuptools
with open("README.MD", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='md-toc-creator',
version='1.4.1',
author="Michael Connor Buchan",
author_email="[email protected]",
description="Generates a table of contents for a markdown document in markdown.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mcb2003/md-toc-creator",
packages=setuptools.find_packages(),
entry_points={
"console_scripts": [
"md-toc = mdtoc:main"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Environment :: Console",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Text Processing :: Markup",
"Topic :: Text Editors :: Text Processing",
],
)