Skip to content

Commit

Permalink
update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Murillo Bianconi committed Oct 18, 2024
1 parent 66a7443 commit 1083a63
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
30 changes: 28 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
1 change: 1 addition & 0 deletions src/omie_py/__about__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.0.0"

0 comments on commit 1083a63

Please sign in to comment.