From e9317b960719b47bb89f902651dcb4bc9704b88c Mon Sep 17 00:00:00 2001 From: iory Date: Tue, 26 May 2020 18:44:20 +0900 Subject: [PATCH] Rename --- README.md | 4 ++-- line_notify/__init__.py | 2 +- setup.py | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2eed2d2..75f5252 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# line-notify +# pyline-notify A python library for manipulating line notify api ## Install ``` -pip install line-notify +pip install pyline-notify ``` ## QuickStart diff --git a/line_notify/__init__.py b/line_notify/__init__.py index f2212c0..cb9acb6 100644 --- a/line_notify/__init__.py +++ b/line_notify/__init__.py @@ -3,7 +3,7 @@ import pkg_resources -__version__ = pkg_resources.get_distribution("line-notify").version +__version__ = pkg_resources.get_distribution("pyline-notify").version from .line_notify import LineNotify diff --git a/setup.py b/setup.py index 18aceca..9e26a5f 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ "git tag v{:s}".format(version), "git push origin master --tag", "python setup.py sdist", - "twine upload dist/line-notify-{:s}.tar.gz".format(version), + "twine upload dist/pyline-notify-{:s}.tar.gz".format(version), ] for cmd in commands: print("+ {}".format(cmd)) @@ -40,12 +40,12 @@ setup( - name="line-notify", + name="pyline-notify", version=version, description="A python library for manipulating line notify api", author="iory", author_email="ab.ioryz@gmail.com", - url="https://github.com/iory/line-notify", + url="https://github.com/iory/pyline-notify", long_description=open("README.md").read(), long_description_content_type="text/markdown", license="MIT",