-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
48 lines (44 loc) · 1.52 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
"""
GFM-toc
~~~~~~~~~~~~~~
Simple and customizable way to generate TOC for github markdown files.
:author: Xie Wei <[email protected]>
:copyright: (c) 2019 by Xie Wei.
:license: MIT, see LICENSE for more details.
"""
from codecs import open
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='gfm-toc',
version='0.0.7',
url='https://github.com/waynerv/github-markdown-toc',
license='MIT',
author='Xie Wei',
author_email='[email protected]',
description='Simple and customizable way to generate TOC for Github Markdown files.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='markdown md github gfm table of contents toc',
platforms='Linux & OSX',
packages=['gfm_toc'],
scripts=['bin/gfm-toc'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Terminals',
'Topic :: Text Editors :: Text Processing',
'Topic :: Text Processing',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
]
)