Python re-implementation of Cinnamon’s [Seasonal Hours Clock](https://github.com/cinnamon-bun/seasonal-hours-clock).
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
614 B
30 lines
614 B
[tool.poetry] |
|
name = "seasonal-clock" |
|
version = "0.1.0" |
|
description = "" |
|
authors = ["Gergely Polonkai <gergely@polonkai.eu>"] |
|
|
|
[tool.poetry.dependencies] |
|
python = "^3.10" |
|
geopy = "^2.2.0" |
|
pytz = "^2022.1" |
|
tzwhere = "^3.0.3" |
|
toml = "^0.10.2" |
|
astral = "^2.2" |
|
xdg = "^5.1.1" |
|
|
|
[tool.poetry.dev-dependencies] |
|
pytest = "^5.2" |
|
black = "^22.1.0" |
|
pylint = "^2.12.2" |
|
mypy = "^0.941" |
|
types-toml = "^0.10.4" |
|
types-pytz = "^2021.3.6" |
|
|
|
[tool.poetry.scripts] |
|
print_data = "seasonal_clock:main" |
|
print_svg = "seasonal_clock.svg:print_svg" |
|
|
|
[build-system] |
|
requires = ["poetry-core>=1.0.0"] |
|
build-backend = "poetry.core.masonry.api"
|
|
|