sphinx/tests/roots/test-theming/setup.py
2018-02-19 23:20:56 +09:00

15 lines
288 B
Python

# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
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
""",
)