-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.44 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
[tool.poetry]
name = "ocs-ingester"
version = "3.2.0"
description = "Ingest frames into the science archive of an observatory control system"
authors = ["Observatory Control System Project <ocs@lco.global>"]
license = "GPL-3.0-only"
readme = "README.md"
homepage = "https://observatorycontrolsystem.github.io"
repository = "https://github.com/observatorycontrolsystem/ingester"
keywords = [
"observations",
"astronomy",
"astrophysics",
"cosmology",
"science",
"archive"
]
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics"
]
[tool.poetry.dependencies]
python = ">=3.11"
boto3 = ">=1,<2"
requests = "^2"
python-dateutil = ">=2,<3"
astropy = ">=7,<9.0"
numpy = "^2"
ocs_archive = ">=0.5.0"
lcogt-logging = "<1.0.0"
opentsdb-python-metrics = ">=0.3.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=7,<8"
[tool.poetry.group.CI.dependencies]
coveralls = ">=3,<4"
[tool.poetry.scripts]
ocs_ingest_frame = "ocs_ingester.scripts.ingest_frame:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"