iseal-core/pyproject.toml
Alan Orth d092f83cda
pyproject.toml: adjust dependencies
Remove pylode because Marie says she was only using it for the HTML
docs, but I'm doing that differently now. This means we can have a
direct dependency on rdflib now.

Also, move isort and black to dev dependencies because nobody will
need them except me. :)
2021-12-02 12:53:25 +02:00

22 lines
547 B
TOML

[tool.poetry]
name = "iseal-schema"
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.9"
pandas = "^1.3.4"
openpyxl = "^3.0.9"
ipykernel = "^6.4.2"
rdflib = "^6.0.2"
[tool.poetry.dev-dependencies]
isort = "^5.9.3"
black = "^21.9b0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"