Compare commits
2
Commits
56feecfeff
...
8400993ad5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8400993ad5 | ||
|
|
7222e18811 |
@@ -47,3 +47,7 @@
|
|||||||
Remove the README.org.
|
Remove the README.org.
|
||||||
** 1.2.2 <2023-07-16>
|
** 1.2.2 <2023-07-16>
|
||||||
Add the CI/CD configuration.
|
Add the CI/CD configuration.
|
||||||
|
** 1.2.3 <2023-07-16>
|
||||||
|
Fix the command that was "ans", but it must be "asn".
|
||||||
|
** 1.2.4 <2023-07-16>
|
||||||
|
Update the README.
|
||||||
|
|||||||
+23
-2
@@ -4,6 +4,27 @@ Anitube Simple Notification
|
|||||||
Anitube Simple Notification is a application made for getting
|
Anitube Simple Notification is a application made for getting
|
||||||
notification when a content is updated on the web-site (anitube.in.ua).
|
notification when a content is updated on the web-site (anitube.in.ua).
|
||||||
|
|
||||||
|
Install
|
||||||
|
=======
|
||||||
|
|
||||||
|
Ensure that python and pip are installed:
|
||||||
|
|
||||||
|
.. code:: shell
|
||||||
|
|
||||||
|
python --version
|
||||||
|
python -m pip -V
|
||||||
|
# or
|
||||||
|
python3 --version
|
||||||
|
python3 -m pip -V
|
||||||
|
|
||||||
|
Install the package:
|
||||||
|
|
||||||
|
.. code:: shell
|
||||||
|
|
||||||
|
pip install anitube-simple-notification
|
||||||
|
# or
|
||||||
|
pip3 install anitube-simple-notification
|
||||||
|
|
||||||
Usage
|
Usage
|
||||||
=====
|
=====
|
||||||
|
|
||||||
@@ -30,8 +51,8 @@ Run the program by one of the commands:
|
|||||||
|
|
||||||
.. code:: shell
|
.. code:: shell
|
||||||
|
|
||||||
python3 main.py
|
anitube-simple-notification
|
||||||
python main.py
|
asn
|
||||||
|
|
||||||
Author
|
Author
|
||||||
======
|
======
|
||||||
|
|||||||
+2
-2
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "anitube-simple-notification"
|
name = "anitube-simple-notification"
|
||||||
version = "1.2.2"
|
version = "1.2.4"
|
||||||
authors = [
|
authors = [
|
||||||
{ name="Kostiantyn Klochko", email="kklochko@protonmail.com" },
|
{ name="Kostiantyn Klochko", email="kklochko@protonmail.com" },
|
||||||
]
|
]
|
||||||
@@ -28,7 +28,7 @@ dependencies = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[project.scripts]
|
[project.scripts]
|
||||||
ans = "src.main:main"
|
asn = "src.main:main"
|
||||||
anitube-simple-notification = "src.main:main"
|
anitube-simple-notification = "src.main:main"
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
|
|||||||
Reference in New Issue
Block a user