-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (78 loc) · 2.51 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
87
88
89
[project]
authors = [
{ name = "Wanqiu He" },
{ name = "Kiyoto Yabe" },
{ name = "Eric Jeschke" },
{ name = "Masato Onodera", email = "[email protected]" },
]
name = "pfs_obsproc_planning"
version = "0.2.0"
description = ""
dependencies = [
"astroplan>=0.9.1",
"astropy>=5.3",
"bokeh>=3.3.0",
"colorcet>=3.0.1",
"gitpython>=3.1.38",
"gurobipy>=10.0.3,<11",
"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-binary>=2.9.8",
"pybind11>=2.11.1",
"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",
"shapely>=2.0.1",
"sqlalchemy>=2.0.21",
"toml>=0.10.2",
"wheel>=0.41.2",
"qplan @ git+https://github.com/naojsoft/qplan.git",
"pfs-datamodel @ git+https://github.com/Subaru-PFS/datamodel.git",
"ets-fiber-assigner @ git+https://github.com/Subaru-PFS/ets_fiberalloc.git@tickets/FIBERALLOC-49", # two-step assignment
#"pfs-design-tool @ git+https://github.com/Subaru-PFS/ets_pointing.git@u/kiyoyabe/run15_2024mar",
"ics-cobraOps @ git+https://github.com/Subaru-PFS/ics_cobraOps.git",
"opdb @ git+https://github.com/Subaru-PFS/spt_operational_database.git",
"ets_target_database @ git+https://github.com/Subaru-PFS/ets_target_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_planning", "ets_shuffle", "pfs_design_tool"]
include-package-data = true
[tool.setuptools.package-dir]
pfs_obsproc_planning = "src/pfs_obsproc_planning"
ets_shuffle = "src/ets_shuffle/ets_shuffle"
pfs_design_tool = "src/ets_pointing/src/pfs_design_tool"
[tool.pdm.dev-dependencies]
dev = [
"-e git+https://github.com/Subaru-PFS/ics_cobraCharmer.git@1af21d85a0af309cc57c939b78d625e884ece404#egg=ics-cobraCharmer",
"-e git+https://github.com/Subaru-PFS/ics_fpsActor.git@u/monodera/tweak_sdss3tools_dep#egg=ics-fpsActor",
"-e git+https://github.com/Subaru-PFS/pfs_utils.git#egg=pfs-utils",
]
[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" }