-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (23 loc) · 873 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
27
28
"""
this is the setup of this package.
"""
from setuptools import setup
from sphinxcontrib.excel import __version__
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='.'.join(map(str, __version__)),
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"],
)