horoscope: add

This commit is contained in:
2023-02-24 21:51:04 +01:00
parent 0317be2c49
commit 79bffac7f9
5 changed files with 341 additions and 0 deletions

21
horoscope/pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[tool.poetry]
name = "horoscope"
version = "0.1.0"
description = ""
authors = ["Kierán Meinhardt <kmein@posteo.de>"]
[tool.poetry.dependencies]
python = "^3.8"
flatlib = "^0.2.3"
click = "^8.0.3"
timezonefinder = "^5.2.0"
pytz = "^2021.3"
[tool.poetry.scripts]
horoscope = "horoscope:main"
transits-current = "transits:current"
transits-forecast = "transits:forecast"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"