-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
86 lines (80 loc) · 2.31 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
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
[build-system]
requires = ["setuptools", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "sotodlib"
readme = "README.md"
description = "Simons Observatory TOD Simulation and Processing"
license = {file = "LICENSE"}
maintainers = [
{name = "Simons Observatory Collaboration"},
{email = "so_software@simonsobservatory.org"},
]
requires-python = ">=3.9"
dependencies = [
"numpy",
"scipy",
"matplotlib",
"quaternionarray",
"PyYAML",
"toml",
"skyfield",
"so3g",
"pixell",
"pytest",
"scikit-image",
"pyfftw",
"numdifftools",
"psycopg2-binary",
"lmfit",
]
dynamic=["version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Astronomy",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
"Source" = "https://github.com/simonsobs/sotodlib"
"Issue Tracker" = "https://github.com/simonsobs/sotodlib/issues"
[project.optional-dependencies]
site_pipeline = [
"influxdb",
"venn",
"sodetlib @ git+https://github.com/simonsobs/sodetlib",
"let-me-scroll-it",
]
tests = [
"socs",
]
[project.scripts]
so_hardware_sim = "sotodlib.scripts.hardware_sim:main"
so_hardware_plot = "sotodlib.scripts.hardware_plot:main"
so_hardware_trim = "sotodlib.scripts.hardware_trim:main"
so_hardware_info = "sotodlib.scripts.hardware_info:main"
so-metadata = "sotodlib.core.metadata.cli:main"
so-site-pipeline = "sotodlib.site_pipeline.cli:main"
so-data-package = "sotodlib.io.imprinter_cli:main"
toast_so_sim = "sotodlib.toast.scripts.so_sim:cli"
toast_so_map = "sotodlib.toast.scripts.so_map:cli"
toast_so_transfer = "sotodlib.toast.scripts.so_transfer:cli"
toast_so_convert = "sotodlib.toast.scripts.so_convert:cli"
toast_so_batch_control = "sotodlib.toast.scripts.so_batch_control:cli"
get_wafer_offset = "sotodlib.toast.scripts.get_wafer_offset:main"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "sotodlib/_version.py"
versionfile_build = "sotodlib/_version.py"
tag_prefix = "v"
parentdir_prefix = "sotodlib-"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]