Move from pipenv -> poetry

I like poetry's tooling better than pipenv. Simple as

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2023-06-20 21:22:13 -07:00
parent 8027c67bf2
commit 70416f0751
4 changed files with 388 additions and 237 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[tool.poetry]
name = "chanbans"
version = "0.1.0"
description = "4chan Ban Archiver"
authors = ["Hidden Service <hiddenservice@airmail.cc>"]
license = "AGPL 3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
beautifulsoup4 = "^4.12.2"
httpx = "^0.24.1"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
mypy = "^1.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"