-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (33 loc) · 1.29 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
from setuptools import setup
from codecs import open
from os import path
from sphinx_markdown_tables import __version__
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='sphinx-markdown-tables',
version=__version__.__version__,
description='A Sphinx extension for rendering tables written in markdown',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ryanfox/sphinx-markdown-tables',
author='Ryan Fox',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='sphinx markdown tables',
packages=['sphinx_markdown_tables'],
install_requires=['markdown==2.6.11'],
project_urls={
'Bug Reports': 'https://github.com/ryanfox/sphinx-markdown-tables/issues',
'Say Thanks!': 'https://foxrow.com',
'Source': 'https://github.com/ryanfox/sphinx-markdown-tables/',
},
)