iseal-core/pyproject.toml
Alan Orth 7488a24e34 pyproject.toml: update dependencies
Most of these are minor and would have been selected by the semant-
ic version string during `poetry install`, but I want to make sure
that they are as current as possible before I leave the project.

In the case of Pandas 1.4.0 the minimum Python version is actually
only 3.8, so let's set that as the minimum.
2022-01-30 13:29:07 +03:00

22 lines
544 B
TOML

[tool.poetry]
name = "iseal-core"
version = "0.1.0"
description = "Workflow to process ISEAL schema Excel into RDF and user-facing specification."
authors = ["Alan Orth <aorth@mjanja.ch>", "Marie-Angelique Laporte <m.a.laporte@cgiar.org>"]
license = "GPL-3.0-only"
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.4.0"
rdflib = "^6.1.1"
requests = "^2.27.1"
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
black = "^22.1.0"
csvkit = "^1.0.6"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"