-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 1.01 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
[tool.poetry]
name = "night-sky-pi"
version = "2.0.1"
description = "Capture images from sunset till sunrise for processing off device."
authors = ["Joe McCarthy <[email protected]>"]
maintainers = ["Joe McCarthy <[email protected]>"]
documentation = "https://github.com/joe-mccarthy/night-sky-pi"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/joe-mccarthy/night-sky-pi"
repository = "https://github.com/joe-mccarthy/night-sky-pi"
[tool.poetry.dependencies]
python = "^3.12"
suntime = "1.2.5"
paho-mqtt = "^2.1.0"
dataclasses-json = "^0.6.7"
dataclass-wizard = ">=0.33,<0.36"
python-magic = "^0.4.27"
pillow = "^11.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
black = "^24.10.0"
freezegun = "^1.5.1"
pytest-mock = "^3.14.0"
pytest-cov = "^6.0.0"
pytest-randomly = "^3.16.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
night-sky-pi = "night_sky_pi.entry:night_sky_pi"