51 lines
1.8 KiB
Python
51 lines
1.8 KiB
Python
from setuptools import setup
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="sphinx_nervproject_theme",
|
|
version="0.5.1",
|
|
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_nervproject_theme"],
|
|
package_data={
|
|
"sphinx_nervproject_theme": [
|
|
"theme.conf",
|
|
"*.html",
|
|
"util/*.html",
|
|
"ablog/*.html",
|
|
"static/*.css",
|
|
"static/*.js",
|
|
"static/fonts/luciole/*.ttf",
|
|
"static/fonts/hack/*.ttf",
|
|
]
|
|
},
|
|
entry_points={"sphinx.html_themes": ["nervproject = sphinx_nervproject_theme"]},
|
|
install_requires=["sphinx>=2.0.0"],
|
|
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.5",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Documentation",
|
|
"Topic :: Software Development :: Documentation",
|
|
],
|
|
keywords="sphinx doc theme vue.js",
|
|
project_urls={
|
|
"Source": "https://procrastinator.nerv-project.eu/nerv-project/communication/sphinx_nervproject_theme",
|
|
"Issues": "https://procrastinator.nerv-project.eu/nerv-project/communication/sphinx_nervproject_theme/issues",
|
|
},
|
|
)
|