32 lines
1 KiB
Python
32 lines
1 KiB
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name='sphinx_storymaker',
|
||
|
version='0.1',
|
||
|
packages=find_packages(),
|
||
|
entry_points={
|
||
|
'sphinx.builders': [
|
||
|
'escoria = sphinx_storymaker.escoria_builder.EscoriaBuilder',
|
||
|
]
|
||
|
},
|
||
|
install_requires=["Sphinx", "sphinxcontrib-blockdiag"],
|
||
|
author="kujiu",
|
||
|
author_email="kujiu-storymaker@kujiu.org",
|
||
|
descrption="Make your book and visual novel with Sphinx and Escoria",
|
||
|
keywords="novel sphinx escoria",
|
||
|
license="EUPL 1.2",
|
||
|
license_files=["LICENSE", "LICENSE-de", "LICENSE-fr", "LICENSE-nl"],
|
||
|
classifiers=[
|
||
|
"Development Status :: 2 - Pre-Alpha",
|
||
|
"Environment :: Console :: Curses",
|
||
|
"Environment :: X11 Applications :: Qt",
|
||
|
"Framework :: Sphinx :: Extension",
|
||
|
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"Topic :: Artistic Software",
|
||
|
"Topic :: Games/Entertainment :: Role-Playing",
|
||
|
]
|
||
|
)
|