From 8a96ca8f71acda259c83980986df17992a46b6ab Mon Sep 17 00:00:00 2001 From: tessier Date: Thu, 21 Feb 2019 12:46:08 +0900 Subject: [PATCH] [Pypi] Upload --- README.md | 5 +++++ setup.py | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ed1f82..3275c3e 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,11 @@ Japanese holiday for Python +# install + +> pip install holiday-jp + + # dependencies > pip3 install -r requirements.txt diff --git a/setup.py b/setup.py index f9b00b7..14ca382 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,13 @@ from setuptools import setup, find_packages setup(name='holiday_jp', - version='19.02.18', + version='19.02.20', url='https://github.com/LUXEYS/holiday_jp-python', license='MIT', author='Luxeys', author_email='tessier@luxeys.com', description='Japanese holiday for Python', + long_description_content_type="text/markdown", packages=find_packages(), long_description=open('README.md').read(), zip_safe=False)