-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (67 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
78 lines (67 loc) · 1.6 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
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "aeonlib"
version = "0.2.0"
description = "A suite of modules to enable TDA/MMA observations"
readme = "README.md"
authors = [{ name = "Austin Riba", email = "ariba@lco.global" }]
requires-python = ">=3.12"
dependencies = [
"astropy>=6.0",
"httpx>=0.28.1",
"pydantic>=2.11.1",
"pydantic-settings>=2.9.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
codegen = [
"jinja2>=3.1.6",
"textcase>=0.2.1",
]
dev = [
"lxml-stubs>=0.5.1",
"pytest>=8.3.5",
"time-machine>=3.2.0",
]
[project.optional-dependencies]
eso = ["p2api>=1.0.10"]
lt = [
"lxml>=5.4.0",
"lxml-stubs>=0.5.1",
"suds>=1.2.0",
]
salt = [
"beautifulsoup4>=4.14.3",
"jinja2>=3.1.6",
"lxml>=6.0.1",
"pyastrosalt>=0.2.2",
]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib", "-m not online"]
markers = [
"online: Marks tests that run online, for example, validating schemas",
"side_effect: Online tests that have side effects such as creating observation requests",
]
log_cli = true
log_cli_format = "%(levelname)s [%(name)s %(filename)s:%(lineno)s %(funcName)s()] %(message)s"
[tool.ruff.lint]
exclude = ["*.ipynb"]
[tool.ruff.format]
exclude = [
"*.ipynb",
"src/aeonlib/ocs/*/instruments.py",
]
[tool.pyright]
reportExplicitAny = false
reportAny = false
reportMissingTypeStubs = false
[[tool.mypy.overrides]]
module = "astropy.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "p2api"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "suds.client"
ignore_missing_imports = true