Replace favicon.ico with Anuket version
[opnfvdocs.git] / opnfv-theme / setup.py
1 from setuptools import setup, find_packages
2
3 from sphinx_opnfv_theme import __version__
4
5
6 setup(
7     name='sphinx_opnfv_theme',
8     description="OPNFV Theme for Sphinx",
9     long_description=open('README.rst').read(),
10     url='https://docs.opnfv.org/',
11     author='Trevor Bramwell',
12     author_email='tbramwell@linuxfoundation.org',
13     version=__version__,
14     entry_points={
15         'sphinx.html_themes': [
16             'opnfv = sphinx_opnfv_theme',
17         ]
18     },
19     packages=find_packages(),
20     install_requires=[
21         'sphinx_bootstrap_theme',
22         'sphinxcontrib-httpdomain',
23     ],
24     include_package_data=True,
25     package_data={'sphinx_opnfv_theme': [
26         'theme.conf',
27         'static/*',
28         '*.html',
29     ]},
30 )