(Added) 0.5.2 - add pyproject.toml

main
KKlochko 3 years ago
parent a246ca69fe
commit df496a8592

@ -20,3 +20,5 @@
** 0.5.1 <2022-07-10> ** 0.5.1 <2022-07-10>
New feature: download posters and use them as icons for notifications. New feature: download posters and use them as icons for notifications.
New small feature: showing information about a current task. New small feature: showing information about a current task.
** 0.5.2 <2022-07-21>
Added pyproject.toml.

@ -1,11 +1,14 @@
* Anitube Simple Notification * 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 notification when a content is updated on the web-site (anitube.in.ua).
(anitube.in.ua).
*Not ready for using as applications.* *Not ready for using as applications.*
* Author * Author
Kostya Klochko (c) 2022 Kostya Klochko (c) 2022
* Donation
Monero: 8BCZr3LaciDZUwNUbC8M5gNZTtnPKoT9cMH95YcBoo2k8sg4qaxejYL4Qvp6V21ViqMHj5sHLiuRwhMYxHTVW1HUNAawV6c
[[./img/monero.png]]
* License * License
Under GNU GPL v3 license Under GNU GPL v3 license

@ -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

@ -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"
Loading…
Cancel
Save