forked from pallets/pallets-sphinx-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (45 loc) · 1.61 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
import io
from setuptools import find_packages
from setuptools import setup
with io.open("README.rst", "rt", encoding="utf8") as f:
readme = f.read()
setup(
name="Pallets-Sphinx-Themes",
version="1.1.2",
url="https://github.com/pallets/pallets-sphinx-themes/",
license="BSD",
author="The Pallets Team",
author_email="[email protected]",
description="Sphinx themes for Pallets and related projects.",
long_description=readme,
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
install_requires=["sphinx", "packaging"],
entry_points={
"pygments.styles": [
"pocoo = pallets_sphinx_themes.themes.pocoo:PocooStyle",
"jinja = pallets_sphinx_themes.themes.jinja:JinjaStyle",
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Documentation",
],
)