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
|
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="sphinx_press_theme",
version="0.8.0",
url="https://schettino72.github.io/sphinx_press_site/",
license="MIT",
author="Eduardo Naufel Schettino <schetino72>",
description="A Sphinx-doc theme based on Vuepress",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["sphinx_press_theme"],
package_data={
"sphinx_press_theme": [
"theme.conf",
"*.html",
"util/*.html",
"static/*.css",
"static/*.js",
]
},
entry_points={"sphinx.html_themes": ["press = sphinx_press_theme"]},
install_requires=["sphinx>=4.0.1"], # last tested with 4.0.0 & docutils 0.17
classifiers=[
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
],
keywords="sphinx doc theme vue.js",
project_urls={
"Documentation": "https://schettino72.github.io/sphinx_press_site/",
"Source": "https://github.com/schettino72/sphinx_press_theme",
"Tracker": "https://schettino72.github.io/sphinx_press_site/issues",
},
)
|