-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
44 lines (43 loc) · 1.27 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
from io import open
from setuptools import setup
from insegel import __version__
setup(
name="insegel",
version=__version__,
url="https://github.com/autophagy/insegel",
license="MIT",
author="Mika Naylor (Autophagy)",
author_email="mail@autophagy.io",
description="Clean, minimalist Sphinx theme for deploying on ReadTheDocs",
long_description=open("README.rst", encoding="utf-8").read(),
zip_safe=False,
packages=["insegel"],
package_data={
"insegel": [
"theme.conf",
"*.html",
"static/css/*.css",
"static/js/*.js",
"static/img/*.*",
]
},
include_package_data=True,
entry_points={
"sphinx.html_themes": [
"insegel = insegel",
]
},
classifiers=[
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
],
)