diff --git a/CHANGELOG.org b/CHANGELOG.org index 988aee6..97a0cf8 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -20,3 +20,5 @@ ** 0.5.1 <2022-07-10> New feature: download posters and use them as icons for notifications. New small feature: showing information about a current task. +** 0.5.2 <2022-07-21> + Added pyproject.toml. diff --git a/README.org b/README.org index 0d82ede..d6a474a 100644 --- a/README.org +++ b/README.org @@ -1,11 +1,14 @@ * 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). +notification when a content is updated on the web-site (anitube.in.ua). *Not ready for using as applications.* * Author Kostya Klochko (c) 2022 +* Donation +Monero: 8BCZr3LaciDZUwNUbC8M5gNZTtnPKoT9cMH95YcBoo2k8sg4qaxejYL4Qvp6V21ViqMHj5sHLiuRwhMYxHTVW1HUNAawV6c +[[./img/monero.png]] + * License Under GNU GPL v3 license diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..c50fd03 --- /dev/null +++ b/README.rst @@ -0,0 +1,25 @@ +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). +**Not ready for using as applications.** + +Author +====== + +Kostya Klochko (c) 2022 + +Donation +======== + +Monero: +8BCZr3LaciDZUwNUbC8M5gNZTtnPKoT9cMH95YcBoo2k8sg4qaxejYL4Qvp6V21ViqMHj5sHLiuRwhMYxHTVW1HUNAawV6c +|image1| + +License +======= + +Under GNU GPL v3 license + +.. |image1| image:: ./img/monero.png diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..367db68 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,28 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "anitube-simple-notification" +version = "0.5.2" +authors = [ + { name="Kostya Klochko", email="kostya_klochko@ukr.net" }, +] +description = "Getting notification from anitube.in.ua." +readme = "README.rst" +license = { file="COPYING" } +requires-python = ">=3.7" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", + "Operating System :: OS Independent", +] +dependencies = [ + "requests", + "bs4", + "notify-py", +] + +[project.urls] +"Homepage" = "https://gitlab.com/KKlochko/anitube-simple-notification" +"Bug Tracker" = "https://gitlab.com/KKlochko/anitube-simple-notification/issues" \ No newline at end of file