加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
Eric Nakagawa 提交于 2018-09-18 09:49 . Fix footer urls
from setuptools import setup
from io import open
from pytorch_sphinx_theme import __version__
setup(
name = 'pytorch_sphinx_theme',
version =__version__,
author = 'Shift Lab',
author_email= 'info@shiftlabny.com',
url="https://github.com/pytorch/pytorch_sphinx_theme",
docs_url="https://github.com/pytorch/pytorch_sphinx_theme",
description='PyTorch Sphinx Theme',
py_modules = ['pytorch_sphinx_theme'],
packages = ['pytorch_sphinx_theme'],
include_package_data=True,
zip_safe=False,
package_data={'pytorch_sphinx_theme': [
'theme.conf',
'*.html',
'static/css/*.css',
'static/js/*.js',
'static/fonts/*.*',
'static/images/*.*',
'theme_variables.jinja'
]},
entry_points = {
'sphinx.html_themes': [
'pytorch_sphinx_theme = pytorch_sphinx_theme',
]
},
license= 'MIT License',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Documentation"
],
install_requires=[
'sphinx'
]
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化