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. :)
This commit is contained in:
Alan Orth 2021-12-02 12:53:25 +02:00
parent 8e8aa2983c
commit d092f83cda
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9

View File

@ -8,15 +8,13 @@ license = "GPL-3.0-only"
[tool.poetry.dependencies]
python = "^3.9"
pandas = "^1.3.4"
# Explicitly install pylode, which installs rdflib. If we install rdflib first
# there is currently some kind of dependency issue due to version conflicts.
pylode = "^2.12.0"
isort = "^5.9.3"
black = "^21.9b0"
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"]