foiaghost/pyproject.toml

28 lines
517 B
TOML
Raw Normal View History

2023-04-27 06:25:07 +00:00
[tool.poetry]
2023-05-08 03:55:02 +00:00
name = "beakers"
2023-04-27 06:25:07 +00:00
version = "0.1.0"
description = ""
authors = ["James Turk <dev@jamesturk.net>"]
readme = "README.md"
2023-05-08 04:31:20 +00:00
[tool.poetry.scripts]
bkr = 'beakers.cli:app'
2023-04-27 06:25:07 +00:00
[tool.poetry.dependencies]
python = "^3.11"
2023-07-11 18:05:36 +00:00
#scrapeghost = {path = "../scrapeghost", develop = true}
2023-04-27 06:25:07 +00:00
scrapelib = "^2.1.0"
2023-05-08 00:17:28 +00:00
httpx = "^0.24.0"
networkx = "^3.1"
2023-07-11 18:05:36 +00:00
pydantic = "^2.0.2"
2023-04-27 06:25:07 +00:00
2023-07-12 04:18:50 +00:00
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
mypy = "^1.4.1"
2023-04-27 06:25:07 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"