diff --git a/CHANGELOG.org b/CHANGELOG.org index f23f6bb..2800362 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -41,3 +41,5 @@ Update the mail information. ** 1.1.4 <2023-07-16> Update the package information and imports. +** 1.2.0 <2023-07-16> + Add commands to execute the package. diff --git a/pyproject.toml b/pyproject.toml index ce2c19a..dca806e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "anitube-simple-notification" -version = "1.1.1" +version = "1.2.0" authors = [ { name="Kostiantyn Klochko", email="kklochko@protonmail.com" }, ] @@ -27,6 +27,14 @@ dependencies = [ "platformdirs~=3.0.0" ] +[project.scripts] +ans = "src.main:main" +anitube-simple-notification = "src.main:main" + [project.urls] "Homepage" = "https://gitlab.com/KKlochko/anitube-simple-notification" "Bug Tracker" = "https://gitlab.com/KKlochko/anitube-simple-notification/issues" + +[tool.setuptools] +packages = ["src"] +