Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

Commit

Permalink
Change setup.py to read the markdown readme
Browse files Browse the repository at this point in the history
  • Loading branch information
C4ptainCrunch committed Jan 9, 2021
1 parent ebbba58 commit bebc633
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,35 +10,31 @@
version = _locals["__version__"]

# README into long description
with codecs.open("README.rst", encoding="utf-8") as f:
with codecs.open("README.md", encoding="utf-8") as f:
readme = f.read()

setup(
name="alabaster_hotwire",
version=version,
description="A configurable sidebar-enabled Sphinx theme",
description="A fork of Alabaster to match the Hotwire.dev style",
long_description=readme,
author="Jeff Forcier",
author_email="[email protected]",
url="https://alabaster.readthedocs.io",
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 :: 5 - Production/Stable",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"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",
Expand Down

0 comments on commit bebc633

Please sign in to comment.