-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.96 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
[project]
name = "chimera"
version = "0.2"
description = "Chimera - Observatory Automation System"
readme = "README.rst"
license = "GPL-2.0-or-later"
authors = [
{ name = "Paulo Henrique Silva", email = "[email protected]" },
{ name = "William Schoenell", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Astronomy",
]
requires-python = ">=3.12"
dependencies = [
"redis[hiredis]>=5.0.8",
"pyyaml>=6.0.2",
"python-dateutil>=2.9.0.post0",
"pyephem>=9.99",
"numpy>=2.1.1",
"astropy>=6.1.3",
"redislite>=6.2.912183",
"rich>=13.9.4",
"sqlalchemy==1.4",
]
[project.urls]
homepage = "https://chimera.readthedocs.org"
source = "https://github.com/astroufsc/chimera"
[project.scripts]
chimera = "chimera.cli.chimera:main"
chimera-cam = "chimera.cli.cam:main"
chimera-admin = "chimera.cli.admin:main"
chimera-filter = "chimera.cli.filter:main"
chimera-tel = "chimera.cli.tel:main"
chimera-dome = "chimera.cli.dome:main"
chimera-focus = "chimera.cli.focus:main"
chimera-console = "chimera.cli.console:main"
chimera-sched = "chimera.cli.sched:main"
chimera-weather = "chimera.cli.weather:main"
chimera-seeing = "chimera.cli.seeing:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"black>=25.1.0",
"pre-commit>=4.1.0",
"pytest>=8.3.3",
"pytest-cov>=6.0.0",
"ruff>=0.9.4",
]
docs = ["furo>=2024.8.6", "sphinx>=8.1.3"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--import-mode=importlib"