25 lines
469 B
TOML
25 lines
469 B
TOML
[tool.poetry]
|
|
name = "aoc-get"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
beautifulsoup4 = "^4.12.2"
|
|
requests = "^2.31.0"
|
|
click = "^8.1.7"
|
|
yaspin = "^3.0.1"
|
|
python-dateutil = "^2.8.2"
|
|
coloredlogs = "^15.0.1"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^23.11.0"
|
|
isort = "^5.12.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|