Skip to content

Commit

Permalink
Fixes #31: Migrate setup.py long_description to markdown README for p…
Browse files Browse the repository at this point in the history
…ypi (#103)
  • Loading branch information
manrajgrover committed Nov 2, 2018
2 parents f047545 + 6dfb3be commit 695f8f8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ coverage==4.4.1
nose==1.3.7
pylint==1.7.2
tox==2.8.2
twine==1.12.1
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@ def dependencies(file):
return f.read().splitlines()


with open("README.md") as infile:
long_description = infile.read()

setup(
name='halo',
packages=find_packages(exclude=('tests', 'examples')),
version='0.0.18',
license='MIT',
description='Beautiful terminal spinners in Python',
long_description='Beautiful terminal spinners in Python. Find the documentation here: https://github.com/ManrajGrover/halo',
long_description=long_description,
long_description_content_type="text/markdown",
author='Manraj Singh',
author_email='manrajsinghgrover@gmail.com',
url='https://github.com/manrajgrover/halo',
Expand Down

0 comments on commit 695f8f8

Please sign in to comment.