From 1083a63c3802647649e76d0bf7ccc6062aa596b0 Mon Sep 17 00:00:00 2001 From: Murillo Bianconi Date: Fri, 18 Oct 2024 16:28:42 -0300 Subject: [PATCH] update pyproject.toml --- pyproject.toml | 30 ++++++++++++++++++++++++++++-- src/omie_py/__about__.py | 1 + 2 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 src/omie_py/__about__.py diff --git a/pyproject.toml b/pyproject.toml index 3c17898..3f0fe5b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,15 +1,41 @@ [project] name = "omie-py" -version = "0.1.0" -description = "Add your description here" +dynamic = ["version"] +description = "Client não oficial da Omie API em Python" authors = [ { name = "Murillo Bianconi", email = "murillo.bianconi@buser.com.br" } ] +readme = "README.md" +keywords = ["omie", "api", "client", "python"] requires-python = ">=3.11" + +classifiers = [ + # 3 - Alpha + # 4 - Beta + # 5 - Production/Stable + "Development Status :: 3 - Alpha", + + "Intended Audience :: Developers", + "Topic :: Software Development :: Libraries :: Python Modules", + + "License :: OSI Approved :: MIT License", + + "Programming Language :: Python :: 3.11" +] + dependencies = [ "zeep>=4.3.1", ] +[project.urls] +homepage = "https://github.com/buserbrasil/omie-py" +repository = "https://github.com/buserbrasil/omie-py" + + +[tool.hatch.version] +path = "src/omie_py/__about__.py" + + [build-system] requires = ["hatchling"] build-backend = "hatchling.build" diff --git a/src/omie_py/__about__.py b/src/omie_py/__about__.py new file mode 100644 index 0000000..3aa0d7b --- /dev/null +++ b/src/omie_py/__about__.py @@ -0,0 +1 @@ +__version__ = "0.0.0" \ No newline at end of file