-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.03 KB
/
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
47
48
49
50
51
52
[project]
name = "carbon_guard"
version = "0.7.4"
description = ""
authors = [
{name = "Adam Gardner", email = "adam.gardner@armakuni.com"},
{name = "Billie Thompson", email = "billie.thompson@armakuni.com"},
]
readme = "README.md"
dependencies = [
"dateparser>=1.2.0",
"httpx[brotli,http2]>=0.27.2",
"pydantic>=2.9.2",
"typer>=0.12.5",
]
requires-python = ">=3.11"
[[tool.mypy.overrides]]
module = [
"wiremock.*",
]
ignore_missing_imports = true
[tool.ruff]
lint.select = ["R", "A", "B", "S", "F"]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["S101"]
[tool.uv]
dev-dependencies = [
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"ruff>=0.6.9",
"types-dateparser>=1.2.0.20240420",
"wiremock>=2.6.1",
"mypy>=1.11.2",
"time-machine>=2.16.0",
]
[project.scripts]
carbon_guard = "src.main:run"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"