sphinx_rtd_theme/setup.py

59 lines
1.8 KiB
Python
Raw Normal View History

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
.. _github: https://github.com/rtfd/sphinx_rtd_theme
2013-11-02 22:26:36 -05:00
"""
from io import open
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',
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',
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',
long_description=open('README.rst', encoding='utf-8').read(),
2013-11-02 22:26:36 -05:00
zip_safe=False,
packages=['sphinx_rtd_theme'],
package_data={'sphinx_rtd_theme': [
'theme.conf',
'*.html',
'static/css/*.css',
'static/js/*.js',
'static/fonts/*.*'
]},
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',
]
},
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',
],
)