Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
iory committed May 26, 2020
1 parent 5246591 commit e9317b9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion line_notify/__init__.py
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -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))
Expand All @@ -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",
Expand Down

0 comments on commit e9317b9

Please sign in to comment.