Skip to content

Commit

Permalink
long desc new
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <[email protected]>
  • Loading branch information
antolonappan authored Apr 12, 2023
1 parent b1898ab commit 1a9f290
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pycachera/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .cacher import Cache as cache

__version__ = "3.0.1"
__version__ = "3.0.2"
__author__ = "Anto I Lonappan"
__author_email__ = "[email protected]"
__description__ = "A simple and powerful python cache decorator"
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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 = '[email protected]',
url = 'https://github.com/antolonappan/pycachera',
long_description=long_description,
long_description_content_type="text/markdown",
)

0 comments on commit 1a9f290

Please sign in to comment.