-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
67 lines (58 loc) · 1.67 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "tendersa-sdk"
version = "0.1.0a0"
description = "Official Python SDK for the Tenders-SA Developer API — South African public procurement data"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
keywords = ["tenders-sa", "south-africa", "procurement", "tenders", "api-client", "sdk"]
authors = [
{ name = "Tenders-SA", email = "developers@tenders-sa.org" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial",
]
dependencies = [
"httpx>=0.27",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-cov>=5.0",
"ruff>=0.5",
"mypy>=1.11",
]
[project.urls]
Homepage = "https://tenders-sa.org/developers"
Documentation = "https://tenders-sa.org/developers/docs"
Repository = "https://github.com/Tenders-SA/python"
Issues = "https://github.com/Tenders-SA/python/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/tendersa"]
[tool.ruff]
target-version = "py39"
line-length = 120
[tool.ruff.lint]
extend-select = ["I"] # isort
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.9"
strict = true
ignore_missing_imports = true
exclude = ["tests/"]
disallow_untyped_defs = false
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]