Skip to content

Commit

Permalink
Trying to fix the README rendering in PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
mil-ad committed Jul 20, 2020
1 parent 48eb04e commit e5e8c55
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import codecs
from setuptools import setup, find_packages

with open("README.md", "r") as fh:
readme = fh.read()
with codecs.open("README.md", encoding="utf-8") as f:
README = f.read()

setup(
name="stui",
description="A Slurm client for the terminal",
long_description=readme,
version="0.2.0",
long_description=README,
long_description_content_type="text/markdown",
version="0.2.1",
packages=find_packages(),
author="Milad Alizadeh",
url="https://github.com/mi-lad/stui",
Expand Down

0 comments on commit e5e8c55

Please sign in to comment.