-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (55 loc) · 1.37 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
[project]
authors = [
{ name = "Kiyoto Yabe", email = "[email protected]" },
]
name = "pfs_obsproc_qa"
version = "0.1.0"
description = ""
dependencies = [
"astropy>=5.3",
"ipython>=8.16.0",
"jupyter>=1.0.0",
"logzero>=1.7.0",
"matplotlib>=3.8.0",
"numpy<1.24.0",
"pandas>=2.1.0",
"psycopg2>=2.9.8",
"pyyaml==5.3.1",
"scikit-learn>=1.3.1",
"scipy>=1.9.3",
"seaborn>=0.13.0",
"sep>=1.2.1",
"setuptools>=68.2.2",
"sqlalchemy>=2.0.21",
"toml>=0.10.2",
"pfs-datamodel @ git+https://github.com/Subaru-PFS/datamodel.git",
"opdb @ git+https://github.com/Subaru-PFS/spt_operational_database.git",
"qadb @ git+https://github.com/Subaru-PFS/spt_qa_database.git",
]
requires-python = ">=3.9,<3.12"
readme = "README.md"
license = { text = "MIT" }
[build-system]
requires = ["setuptools", "wheel", "pybind11"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pfs_obsproc_qa"]
include-package-data = true
[tool.setuptools.package-dir]
pfs_obsproc_qa = "src/pfs_obsproc_qa"
[tool.pdm.options]
add = ["--no-isolation"]
install = ["--no-isolation"]
[tool.pdm.scripts]
gen-requirements = { cmd = [
"pdm",
"export",
"--format",
"requirements",
"--without-hashes",
"--pyproject",
"--dev",
"--output",
"requirements.txt",
"--verbose",
], help = "Generate requirements.txt" }