-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
118 lines (109 loc) · 2.63 KB
/
pyproject.toml
File metadata and controls
118 lines (109 loc) · 2.63 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[project]
name = "pyobs-core"
version = "1.41.0"
description = "robotic telescope software"
authors = [{ name = "Tim-Oliver Husser", email = "thusser@uni-goettingen.de" }]
requires-python = ">=3.11"
license = "MIT"
dependencies = [
"scipy>=1.15.2,<2",
"astropy>=7.0.1,<8",
"numpy>=2.2.5,<3",
"pytz~=2025.2",
"PyYAML>=6.0.2,<7",
"typing-extensions>=4.13.2,<5",
"astroquery>=0.4.10,<0.5",
"slixmpp>=1.14.1",
"single-source>=0.4.0,<0.5",
"dbus-next>=0.2.3,<0.3",
"astroplan>=0.10.1,<0.11",
"py-expression-eval>=0.3.14,<0.4",
"requests>=2.32.3,<3",
"pandas>=2.2.3",
"paramiko>=3.5.1",
"aiohttp>=3.11.18,<4",
"colour>=0.1.5,<0.2",
"dacite>=1.9.2",
"influxdb-client>=1.49.0",
"pydantic>=2.12.5",
"astropydantic>=0.0.5",
"pillow>=11.3.0",
]
[project.optional-dependencies]
full = [
"asyncinotify>=4.2.1,<5",
"sep>=1.4.1,<2 ; sys_platform == 'linux'",
"python-daemon>=3.1.2,<4",
"ccdproc>=2.4.3,<3",
"photutils>=2.2.0,<3",
"lmfit>=1.3.3,<2",
"tornado>=6.4.2,<7",
"python-telegram-bot~=22.0",
"opencv-python-headless>=4.10.0.84",
"sunpy>=7.0.1",
"matrix-nio>=0.25.2",
]
gui = [
"pyside6>=6.11.0",
"qfitswidget>=0.13.1",
"qtpy>=2.4.3",
]
[project.scripts]
pyobs = "pyobs.cli.pyobs:main"
pyobsd = "pyobs.cli.pyobsd:main"
pyobsw = "pyobs.cli.pyobsw:main"
[dependency-groups]
dev = [
"types-cryptography>=3.3.23.2,<4",
"types-enum34>=1.1.8,<2",
"types-ipaddress>=1.0.8,<2",
"types-paramiko>=3.5.0.20240928,<5",
"types-pytz>=2025.2.0.20250326,<2026",
"types-PyYAML>=6.0.12.20250402,<7",
"types-requests>=2.32.0.20250328,<3",
"types-setuptools>=80.3.0.20250505,<81",
"types-toml>=0.10.8.20240310,<0.11",
"types-tornado>=5.1.1,<6",
"mypy>=1.15.0,<2",
"pytest>=8.3.5,<10",
"pytest-asyncio>=0.26.0,<1.4",
"pytest-cov>=6.1.1,<8",
"pytest-mock>=3.14.0,<4",
"black>=25.1.0,<27",
"pre-commit>=4.2.0,<5",
"flake8>=7.3.0",
"aioresponses>=0.7.8",
"coverage>=7.9.2",
"sphinx>=8.2.3",
"sphinx-rtd-theme>=3.0.2",
"pyside6-stubs>=6.7.3.0",
]
[tool.hatch.build.targets.sdist]
include = ["pyobs"]
[tool.hatch.build.targets.wheel]
include = ["pyobs"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools.package-data]
"pyobs" = ["py.typed"]
[tool.black]
line-length = 120
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/
'''