Marty Oehme
165237f983
Since we import things at any point in the file, in any potential cell, we can just ignore the flake8 ruff warning about it.
25 lines
536 B
TOML
25 lines
536 B
TOML
[tool.poetry]
|
|
name = "scoping-review"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Marty Oehme <marty.oehme@gmail.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "<3.13,>=3.11"
|
|
pandas = "^2.1.1"
|
|
seaborn = "^0.12.2"
|
|
bibtexparser = {version = ">=2.0.0b1", allow-prereleases = true}
|
|
jupyter = "^1.0.0"
|
|
jupyter-cache = "^0.6.1"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pynvim = "^0.4.3"
|
|
pyperclip = "^1.8.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.ruff]
|
|
ignore = ["E402"]
|