africat/pyproject.toml

25 lines
640 B
TOML
Raw Permalink Normal View History

2023-12-01 19:24:42 +00:00
[tool.poetry]
name = "africat"
2023-12-13 17:26:55 +00:00
version = "0.1.4"
2023-12-01 19:24:42 +00:00
description = "Categorise articles about Africa according to the AllAfrica_NewsStory dataset, based on categories from AllAfrica::Cats"
authors = ["Timothy Allen <tim@treehouse.org.za>"]
readme = "README.md"
[tool.poetry.dependencies]
2023-12-13 17:25:36 +00:00
python = "^3.10"
2023-12-01 20:16:56 +00:00
numpy = "^1.26.2"
pandas = "^2.1.3"
pandarallel = "^1.6.5"
torch = "^2.1.1"
torchtext = "^0.16.1"
torchdata = "^0.7.1"
tqdm = "^4.66.1"
2023-12-01 19:24:42 +00:00
2023-12-01 20:46:30 +00:00
[tool.poetry.scripts]
aa_create_database = "africat.aa_create_database:main"
2023-12-13 17:25:36 +00:00
categorise = "africat.categorise:main"
2023-12-01 20:46:30 +00:00
2023-12-01 19:24:42 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"