-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.17 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
[project]
authors = [
{name = "Mark Servilla", email = "mark.servilla@gmail.com"},
{name = "James Brunt", email = "jbrunt@unm.edu"}
]
dependencies = []
name = "soh"
requires-python = ">= 3.11"
version = "2026.03.15"
[project.scripts]
health_check = "soh.health_check:main"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64", "linux-aarch64"]
[tool.pixi.pypi-dependencies]
soh = { path = ".", editable = true }
[tool.pixi.tasks]
[tool.pixi.dependencies]
python = "3.11.*"
psycopg2-binary = ">=2.9.10,<3"
aiohttp = ">=3.13.3,<4"
aiodns = ">=3.0.0,<4"
asyncssh = ">=2.22.0,<3"
click = ">=8.3.1,<9"
cryptography = ">=46.0.5,<47"
daiquiri = ">=3.0.0,<4"
faust-cchardet = ">=2.1.19,<3"
ldap3 = ">=2.9.1,<3"
paramiko = ">=4.0.0,<5"
pendulum = ">=3.2.0,<4"
psycopg2 = ">=2.9.10,<3"
pytest = ">=9.0.2,<10"
pytzdata = ">=2020.1,<2021"
requests = ">=2.32.5,<3"
urllib3 = ">=2.6.3,<3"
sqlalchemy = "<2.0"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--strict-markers",
]