-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
40 lines (39 loc) · 1.47 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
from pathlib import Path
setup(
name="sphinx-pythia-theme",
url="https://sphinx-pythia-theme.readthedocs.io",
project_urls={
"Documentation": "https://projectpythia.org",
"Source Code": "https://github.com/ProjectPythia/sphinx-pythia-theme",
"Bug Tracker": "https://github.com/ProjectPythia/sphinx-pythia-theme/issues",
},
author="Kevin Paul",
author_email="projectpythia@ucar.edu",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet",
"Topic :: Software Development :: Documentation",
],
license="Apache 2.0",
description="The Sphinx Pythia Theme",
long_description=Path("./README.md").read_text(),
long_description_content_type="text/markdown",
keywords="sphinx, theme, jupyter, notebook",
zip_safe=True,
include_package_data=True,
install_requires=[
"sphinx>=5.0",
"sphinx-book-theme>=1.0.0",
"sphinx_design",
],
packages=find_packages(),
entry_points={"sphinx.html_themes": ["sphinx_pythia_theme = sphinx_pythia_theme"]},
use_scm_version={"version_scheme": "post-release", "local_scheme": "dirty-tag"},
)