github.com/imran-kn/cilium-fork@v1.6.9/Documentation/_themes/sphinx_rtd_theme/setup.py (about) 1 # -*- coding: utf-8 -*- 2 """`sphinx_rtd_theme` lives on `Github`_. 3 4 .. _github: https://www.github.com/snide/sphinx_rtd_theme 5 6 """ 7 from io import open 8 from setuptools import setup 9 from sphinx_rtd_theme import __version__ 10 11 12 setup( 13 name='sphinx_rtd_theme', 14 version=__version__, 15 url='https://github.com/rtfd/sphinx_rtd_theme/', 16 license='MIT', 17 author='Dave Snider', 18 author_email='dave.snider@gmail.com', 19 description='Read the Docs theme for Sphinx', 20 long_description=open('README.rst', encoding='utf-8').read(), 21 zip_safe=False, 22 packages=['sphinx_rtd_theme'], 23 package_data={'sphinx_rtd_theme': [ 24 'theme.conf', 25 '*.html', 26 'static/css/*.css', 27 'static/js/*.js', 28 'static/font/*.*' 29 ]}, 30 include_package_data=True, 31 # See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package 32 entry_points = { 33 'sphinx.html_themes': [ 34 'sphinx_rtd_theme = sphinx_rtd_theme', 35 ] 36 }, 37 classifiers=[ 38 'Framework :: Sphinx', 39 'Framework :: Sphinx :: Theme', 40 'Development Status :: 5 - Production/Stable', 41 'License :: OSI Approved :: MIT License', 42 'Environment :: Console', 43 'Environment :: Web Environment', 44 'Intended Audience :: Developers', 45 'Programming Language :: Python :: 2.7', 46 'Programming Language :: Python :: 3', 47 'Programming Language :: Python :: 3.3', 48 'Programming Language :: Python :: 3.4', 49 'Programming Language :: Python :: 3.5', 50 'Programming Language :: Python :: 3.6', 51 'Operating System :: OS Independent', 52 'Topic :: Documentation', 53 'Topic :: Software Development :: Documentation', 54 ], 55 )