From 1a9f290db59ccb82b6ff1c0e1147ef4dbb93a369 Mon Sep 17 00:00:00 2001 From: Anto Idicherian Lonappan Date: Wed, 12 Apr 2023 03:36:43 +0000 Subject: [PATCH] long desc new Signed-off-by: GitHub --- pycachera/__init__.py | 2 +- setup.py | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pycachera/__init__.py b/pycachera/__init__.py index a405092..35f8c7a 100644 --- a/pycachera/__init__.py +++ b/pycachera/__init__.py @@ -1,6 +1,6 @@ from .cacher import Cache as cache -__version__ = "3.0.1" +__version__ = "3.0.2" __author__ = "Anto I Lonappan" __author_email__ = "mail@antolonappan.me" __description__ = "A simple and powerful python cache decorator" diff --git a/setup.py b/setup.py index a8082de..05e4f57 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,20 @@ from distutils.core import setup +from pathlib import Path +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() + files = ["pycachera/*"] setup( name = 'pycachera', packages = ['pycachera'], package_data = {'pycachera' : files }, - version = '3.0.1', + version = '3.0.2', install_requires = ['numpy','pandas'], description = 'A powerfull python caching tool', author = 'Anto Idicherian Lonappan', author_email = 'mail@antolonappan.me', url = 'https://github.com/antolonappan/pycachera', + long_description=long_description, long_description_content_type="text/markdown", )