sphinx/tests/roots/test-theming/setup.py
2019-01-02 21:53:07 +09:00

12 lines
236 B
Python

from setuptools import setup, find_packages
setup(
name='test-theme',
packages=find_packages(),
include_package_data=True,
entry_points="""
[sphinx_themes]
path = test_theme:get_path
""",
)