sphinx/tests/roots/test-theming/setup.py

12 lines
236 B
Python
Raw Normal View History

from setuptools import setup, find_packages
setup(
2018-02-19 07:39:14 -06:00
name='test-theme',
packages=find_packages(),
include_package_data=True,
entry_points="""
[sphinx_themes]
path = test_theme:get_path
""",
)