From 78c75042877d9f434c1c10a3591a559d40e41f23 Mon Sep 17 00:00:00 2001 From: Ace Date: Tue, 24 Nov 2020 15:27:40 +0100 Subject: [PATCH] setup improvements changed development stage from alpha to beta. added some additional classifiers. Included README of github in project description. --- setup.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index cecb15c..1957f0c 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,17 @@ from setuptools import setup +from os import path + +this_directory = path.abspath(path.dirname(__file__)) +with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: + long_description = f.read() __project__ = "inkycal" __version__ = "2.0.0" -__description__ = "Python3 software for syncing icalendar events, weather and news on selected E-Paper displays" +__description__ = "Inykcal is a python3 software for syncing icalendar events, weather and news on selected E-Paper displays" __packages__ = ["inkycal"] __author__ = "aceisace" __author_email__ = "aceisace63@yahoo.com" -__url__ = "https://github.com/aceisace/Inky-Calendar" +__url__ = "https://github.com/aceisace/Inkycal" __install_requires__ = ['pyowm==3.1.1', # weather 'Pillow>=7.1.1' , # imaging @@ -21,9 +26,10 @@ __install_requires__ = ['pyowm==3.1.1', # weather ] __classifiers__ = [ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Intended Audience :: Education", + "Natural Language :: English", "Programming Language :: Python :: 3 :: Only", ] @@ -38,4 +44,6 @@ setup( url = __url__, install_requires = __install_requires__, classifiers = __classifiers__, + long_description=long_description, + long_description_content_type='text/markdown', )