-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (82 loc) · 2.54 KB
/
pyproject.toml
File metadata and controls
92 lines (82 loc) · 2.54 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[project]
name = "sensipy"
version = "4.0.1"
description = "A Python toolkit to simulate instrument sensitivity and plan follow-up observations of time-variable astrophysical sources with gamma-ray observatories."
authors = [
{ name = "Jarred Green", email = "jgreen@mpp.mpg.de" },
{ name = "Barbara Patricelli", email = "barbara.patricelli@inaf.it" },
{ name = "Antonio Stamerra", email = "antonio.stamerra@inaf.it" },
{ name = "Monica Seglar-Arroyo", email = "mseglar@ifae.es" },
]
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
]
keywords = [
"gamma-ray",
"astronomy",
"astrophysics",
"cherenkov",
"gamma-ray astronomy"
]
license = "Apache-2.0"
license-files = ["LICEN[CS]E*"]
dependencies = [
"astropy>=6.0",
"matplotlib>=3.8",
"pandas>=2.3.3",
"pydantic>=2.12.0",
"scipy>=1.16.2",
"seaborn>=0.13.0",
"tqdm>=4.67.1",
"gammapy>=2.0",
"pyarrow>=21.0.0",
"numpy>=1.26.4",
"types-seaborn>=0.13.2.20250914",
"pandas-stubs>=2.3.2.250926",
"scipy-stubs>=1.16.3.0",
"pytest-xdist[psutil]>=3.8.0",
"types-tqdm>=4.67.0.20250809",
]
[project.urls]
Documentation = "https://sensipy.vercel.app/"
Source = "https://github.com/astrojarred/sensipy"
Tracker = "https://github.com/astrojarred/sensipy/issues"
[project.scripts]
sensipy-download-ctao-irfs = "sensipy.scripts.download_ctao_irfs:main"
[dependency-groups]
dev = [
"ipykernel>=6.30.1",
"mypy>=1.18.2",
"pytest>=9.0.0",
"pytest-cov>=7.0.0",
"pytest-mock>=3.15.1",
"ruff>=0.14.4",
]
[[tool.mypy.overrides]]
module = ["gammapy.*", "astropy.*", "regions.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = ["-v", "--strict-markers", "--tb=short", "--no-cov"]
markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
sensipy = ["data/**/*"]
[build-system]
requires = ["uv_build >= 0.9.9"]
build-backend = "uv_build"