2013-11-02 22:26:36 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
2013-11-03 18:32:45 -06:00
|
|
|
"""`sphinx_rtd_theme` lives on `Github`_.
|
2013-11-02 22:26:36 -05:00
|
|
|
|
2018-03-19 06:56:34 -05:00
|
|
|
.. _github: https://github.com/rtfd/sphinx_rtd_theme
|
2013-11-02 22:26:36 -05:00
|
|
|
|
|
|
|
"""
|
2017-08-06 22:03:12 -05:00
|
|
|
from io import open
|
2013-11-03 21:00:44 -06:00
|
|
|
from setuptools import setup
|
|
|
|
from sphinx_rtd_theme import __version__
|
2013-11-02 22:26:36 -05:00
|
|
|
|
|
|
|
|
|
|
|
setup(
|
2013-11-03 18:32:45 -06:00
|
|
|
name='sphinx_rtd_theme',
|
2013-11-03 21:00:44 -06:00
|
|
|
version=__version__,
|
2017-03-06 17:23:16 -06:00
|
|
|
url='https://github.com/rtfd/sphinx_rtd_theme/',
|
2013-11-02 22:26:36 -05:00
|
|
|
license='MIT',
|
2018-03-19 06:56:34 -05:00
|
|
|
author='Dave Snider, Read the Docs, Inc. & contributors',
|
|
|
|
author_email='dev@readthedocs.org',
|
2017-03-06 17:23:16 -06:00
|
|
|
description='Read the Docs theme for Sphinx',
|
2017-08-06 22:03:12 -05:00
|
|
|
long_description=open('README.rst', encoding='utf-8').read(),
|
2013-11-02 22:26:36 -05:00
|
|
|
zip_safe=False,
|
2013-11-03 21:00:44 -06:00
|
|
|
packages=['sphinx_rtd_theme'],
|
|
|
|
package_data={'sphinx_rtd_theme': [
|
|
|
|
'theme.conf',
|
|
|
|
'*.html',
|
|
|
|
'static/css/*.css',
|
|
|
|
'static/js/*.js',
|
2019-02-13 13:54:51 -06:00
|
|
|
'static/fonts/*.*'
|
2013-11-03 21:00:44 -06:00
|
|
|
]},
|
|
|
|
include_package_data=True,
|
2017-06-14 00:07:35 -05:00
|
|
|
# See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package
|
2017-05-30 05:41:29 -05:00
|
|
|
entry_points = {
|
|
|
|
'sphinx.html_themes': [
|
|
|
|
'sphinx_rtd_theme = sphinx_rtd_theme',
|
|
|
|
]
|
|
|
|
},
|
2018-06-18 21:16:44 -05:00
|
|
|
install_requires=[
|
|
|
|
'sphinx'
|
|
|
|
],
|
2013-11-02 22:26:36 -05:00
|
|
|
classifiers=[
|
2017-10-02 17:07:24 -05:00
|
|
|
'Framework :: Sphinx',
|
|
|
|
'Framework :: Sphinx :: Theme',
|
2017-03-06 17:26:37 -06:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
2013-11-02 22:26:36 -05:00
|
|
|
'Environment :: Console',
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
2017-03-06 17:26:37 -06:00
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2013-11-02 22:26:36 -05:00
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Topic :: Documentation',
|
|
|
|
'Topic :: Software Development :: Documentation',
|
|
|
|
],
|
|
|
|
)
|