-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 1.07 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
[project]
name = "ets_fiber_assigner"
readme = "README.md"
authors = [
{name = "Martin Reinecke", email = "martin@mpa-garching.mpg.de"},
{name = "Maximilian Fabricius"},
]
requires-python = ">=3.10"
dependencies = [
"numpy >= 1.17.0",
# what is our minimum required astropy version? We just need the Table class
"astropy",
# we still need version constraints for those, to ensure compatibility
# "ics.cobraOps @ git+https://github.com/Subaru-PFS/ics_cobraOps.git@2.0.5",
# "pfs.datamodel @ git+https://github.com/Subaru-PFS/datamodel.git",
# "pfs.utils @ git+https://github.com/Subaru-PFS/pfs_utils.git",
]
description = "Fiber assignment code for the PFS instrument"
license = "GPL-2.0-or-later"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python",
]
dynamic = ["version"]
[tool.setuptools]
packages = ["ets_fiber_assigner"]
[tool.setuptools.dynamic]
version = {attr = "ets_fiber_assigner.__version__"}