-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
52 lines (50 loc) · 1.82 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup
__version__ = "0.7"
__desc__ = "Convert markdown to html with TOC(table of contents) https://github.com/menduo/mdtree"
repo_url = "https://github.com/menduo/mdtree"
packages = ["mdtree"]
setup(
name="mdtree",
version=__version__,
keywords=["markdown", "toc", "tree", "html"],
description="Convert markdown to html with TOC(table of contents)",
long_description="see more at:\n%s\n" % repo_url,
license="MIT",
url=repo_url,
author="menduo",
author_email="shimenduo@gmail.com",
packages=packages,
package_data={
"mdtree": [
"static/css/*.css",
"static/js/*.js",
"static/html/*.html",
]
},
scripts=["bin/mdtree"],
platforms="any",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Markup :: HTML",
],
install_requires=["markdown>=2.6.8,<3.0", "pygments"],
)