diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0261132..5a1272c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: - "3.10" - "3.11" - "3.12" - + - "3.13" steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 38ecd45..ca8fd13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,22 @@ name = "jambo" dynamic = ["version"] description = "Add your description here" requires-python = ">=3.10,<4.0" +maintainers = [ + { name = "Vitor Hideyoshi", email = "vitor.h.n.batista@gmail.com" }, +] +classifiers = [ + "Development Status :: 3 - Alpha", + + "Intended Audience :: Developers", + + "License :: OSI Approved :: MIT License", + + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", +] +license = { file = "LICENSE" } readme = "README.md" # Project Dependencies @@ -20,6 +36,11 @@ dev = [ ] +[project.urls] +homepage = "https://github.com/HideyoshiNakazone/jambo" +repository = "https://github.com/HideyoshiNakazone/jambo.git" + + # POE Tasks [tool.poe.tasks] create-hooks = "bash .githooks/set-hooks.sh"