forked from zqmillet/sphinx-excel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (22 loc) · 804 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
24
25
26
"""
this is the setup of this package.
"""
from setuptools import setup
with open('sphinxcontrib/requirements.txt', 'r', encoding='utf8') as file:
install_requires = list(map(lambda x: x.strip(), file.readlines()))
with open('readme.md', 'r', encoding='utf8') as file:
long_description = file.read()
setup(
name='sphinx-excel',
version='0.1.0',
author='kinopico',
author_email='[email protected]',
url='https://github.com/zqmillet/sphinx-excel',
description='an extension for sphinx to display excel table in sphinx documents',
packages=['sphinxcontrib.excel'],
install_requires=install_requires,
long_description=long_description,
long_description_content_type='text/markdown',
include_package_data=True,
namespace_packages=["sphinxcontrib"],
)