This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.48 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
#!/usr/bin/env python
import codecs
from setuptools import setup
# Version info -- read without importing
_locals = {}
with open("alabaster_hotwire/_version.py") as fp:
exec(fp.read(), None, _locals)
version = _locals["__version__"]
# README into long description
with codecs.open("README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name="alabaster_hotwire",
version=version,
description="A fork of Alabaster to match the Hotwire.dev style",
long_description=readme,
author="Jeff Forcier",
author_email="[email protected]",
url="https://github.com/hotwire-django/sphinx-hotwire-theme",
packages=["alabaster_hotwire"],
include_package_data=True,
entry_points={"sphinx.html_themes": ["alabaster_hotwire = alabaster_hotwire"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
],
)