59 lines
1.8 KiB
Python
59 lines
1.8 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
"""`sphinx_rtd_theme` lives on `Github`_.
|
||
|
|
||
|
.. _github: https://github.com/rtfd/sphinx_rtd_theme
|
||
|
|
||
|
"""
|
||
|
from io import open
|
||
|
from setuptools import setup
|
||
|
from sphinx_rtd_theme import __version__
|
||
|
|
||
|
|
||
|
setup(
|
||
|
name='sphinx_rtd_theme',
|
||
|
version=__version__,
|
||
|
url='https://github.com/rtfd/sphinx_rtd_theme/',
|
||
|
license='MIT',
|
||
|
author='Dave Snider, Read the Docs, Inc. & contributors',
|
||
|
author_email='dev@readthedocs.org',
|
||
|
description='Read the Docs theme for Sphinx',
|
||
|
long_description=open('README.rst', encoding='utf-8').read(),
|
||
|
zip_safe=False,
|
||
|
packages=['sphinx_rtd_theme'],
|
||
|
package_data={'sphinx_rtd_theme': [
|
||
|
'theme.conf',
|
||
|
'*.html',
|
||
|
'static/css/*.css',
|
||
|
'static/js/*.js',
|
||
|
'static/font/*.*'
|
||
|
]},
|
||
|
include_package_data=True,
|
||
|
# See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package
|
||
|
entry_points = {
|
||
|
'sphinx.html_themes': [
|
||
|
'sphinx_rtd_theme = sphinx_rtd_theme',
|
||
|
]
|
||
|
},
|
||
|
install_requires=[
|
||
|
'sphinx'
|
||
|
],
|
||
|
classifiers=[
|
||
|
'Framework :: Sphinx',
|
||
|
'Framework :: Sphinx :: Theme',
|
||
|
'Development Status :: 5 - Production/Stable',
|
||
|
'License :: OSI Approved :: MIT License',
|
||
|
'Environment :: Console',
|
||
|
'Environment :: Web Environment',
|
||
|
'Intended Audience :: Developers',
|
||
|
'Programming Language :: Python :: 2.7',
|
||
|
'Programming Language :: Python :: 3',
|
||
|
'Programming Language :: Python :: 3.3',
|
||
|
'Programming Language :: Python :: 3.4',
|
||
|
'Programming Language :: Python :: 3.5',
|
||
|
'Programming Language :: Python :: 3.6',
|
||
|
'Operating System :: OS Independent',
|
||
|
'Topic :: Documentation',
|
||
|
'Topic :: Software Development :: Documentation',
|
||
|
],
|
||
|
)
|