mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
12 lines
236 B
Python
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
|
|
""",
|
|
)
|