-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (51 loc) · 1.78 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from io import open
from setuptools import setup
from axsemantics_sphinx_theme import __version__
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="axsemantics_sphinx_theme",
version=__version__,
url="https://github.com/axsemantics/sphinx_theme/",
license="MIT",
author="AX Semantics",
author_email="[email protected]",
description="Sphinx theme used on AX Semantics internal documentation",
long_description=long_description,
packages=["axsemantics_sphinx_theme"],
package_data={
"axsemantics_sphinx_theme": [
"theme.conf",
"*.html",
"static/css/*.css",
"static/js/*.js",
"static/font/*.*",
]
},
include_package_data=True,
# See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package
entry_points={
"sphinx.html_themes": [
"axsemantics_sphinx_theme = axsemantics_sphinx_theme",
]
},
python_requires=">=3.9",
install_requires=["sphinx"],
classifiers=[
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
],
)