forked from buserbrasil/omie-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (35 loc) · 947 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "omie-py"
dynamic = ["version"]
description = "Client não oficial da Omie API em Python"
authors = [
{ name = "Murillo Bianconi", email = "[email protected]" }
]
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"
[tool.uv]
dev-dependencies = [
"ruff>=0.6.9",
]