-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.26 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
[tool.poetry]
name = "ocs-archive"
version = "0.4.0"
description = "Base library for the science archive and ingester of an observatory control system"
authors = ["Observatory Control System Project <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
homepage = "https://observatorycontrolsystem.github.io"
repository = "https://github.com/observatorycontrolsystem/ocs_archive"
keywords = [
"observations",
"astronomy",
"astrophysics",
"cosmology",
"science",
]
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics"
]
[tool.poetry.dependencies]
python = ">=3.8"
astropy = ">=3,<6"
boto3 = ">=1,<2"
requests = ">=2,<3"
python-dateutil = ">=2,<3"
[tool.poetry.group.dev.dependencies]
pytest = ">=7,<8"
responses = ">=0.16.0,<1"
coverage = ">=6,<7"
[tool.poetry.group.CI.dependencies]
coveralls = ">=3,<4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"