-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
32 lines (27 loc) · 911 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
[build-system]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyazul"
version = "0.4.4alpha"
description = "An Azul Webservices light wrapper for Python."
authors = [{ name = "INDEXA Inc.", email = "[email protected]" }]
license = { text = "GNU Lesser General Public License v3 (LGPLv3)" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
]
dependencies = ["httpx", "pydantic>=2.0.0"]
requires-python = ">=3.9"
readme = "README.md"
[project.urls]
Homepage = "https://github.com/indexa-git/pyazul/"
[tool.setuptools]
packages = ["pyazul"]
[project.optional-dependencies]
testing = ["pytest", "pytest-dotenv", "pytest-cov", "pytest-asyncio"]
[tool.pytest.ini_options]
addopts = "-v"
asyncio_mode = "auto"
testpaths = ["tests"]