From 6d4939328b575d9359e26f3aff85242133d03e9c Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Sat, 27 Jul 2019 10:56:50 +0100 Subject: Added long description --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8e0cf64..ed3ec62 100644 --- a/setup.py +++ b/setup.py @@ -3,11 +3,19 @@ from setuptools import setup version = "0.5.0" + +def readme(): + try: + return open('README.md').read() + except: + return "" + setup( name="z80count", version=version, description="A tool to annotate Z80 assembler with cycle counts.", - long_description="", + long_description=readme(), + long_description_content_type="text/markdown", # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Environment :: Console", -- cgit v1.2.3