Compare commits

...
2 Commits
Author SHA1 Message Date
KKlochko 8400993ad5 Update the README.
continuous-integration/drone/push Build is passing
2023-07-16 15:44:06 +03:00
KKlochko 7222e18811 Fix the command that was "ans", but it must be "asn". 2023-07-16 15:33:27 +03:00
3 changed files with 29 additions and 4 deletions
+4
View File
@@ -47,3 +47,7 @@
Remove the README.org.
** 1.2.2 <2023-07-16>
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
View File
@@ -4,6 +4,27 @@ Anitube Simple Notification
Anitube Simple Notification is a application made for getting
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
=====
@@ -30,8 +51,8 @@ Run the program by one of the commands:
.. code:: shell
python3 main.py
python main.py
anitube-simple-notification
asn
Author
======
+2 -2
View File
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "anitube-simple-notification"
version = "1.2.2"
version = "1.2.4"
authors = [
{ name="Kostiantyn Klochko", email="kklochko@protonmail.com" },
]
@@ -28,7 +28,7 @@ dependencies = [
]
[project.scripts]
ans = "src.main:main"
asn = "src.main:main"
anitube-simple-notification = "src.main:main"
[project.urls]