forked from guzzle/guzzle_sphinx_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 710 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name="pyinfra-guzzle_sphinx_theme",
version="0.18",
description="Sphinx theme used by Guzzle, with customisations for pyinfra.",
author="Michael Dowling (modified by Nick Barrett)",
author_email="pointlessrambler@gmail.com",
url="https://github.com/Fizzadar/guzzle_sphinx_theme",
packages=["guzzle_sphinx_theme"],
include_package_data=True,
install_requires=["Sphinx>1.3"],
license="MIT",
classifiers=(
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
),
)