QuAcc/pyproject.toml

50 lines
1.0 KiB
TOML
Raw Normal View History

2023-11-08 17:26:44 +01:00
[tool.poetry]
name = "quacc"
version = "0.1.0"
description = ""
authors = ["Lorenzo Volpi <lorenzo.volpi@outlook.com>"]
readme = "README.md"
[tool.poetry.dependencies]
2023-11-09 12:23:05 +01:00
python = "^3.10"
2023-11-08 17:26:44 +01:00
quapy = "^0.1.7"
pandas = "^2.0.3"
jinja2 = "^3.1.2"
pyyaml = "^6.0.1"
logging = "^0.4.9.6"
2023-11-22 19:27:48 +01:00
abstention = "^0.1.3.1"
2023-11-08 17:26:44 +01:00
[tool.poetry.scripts]
main = "quacc.main:main"
2023-11-09 12:23:05 +01:00
run = "run:run"
2023-11-11 18:46:27 +01:00
panel = "qcpanel.run:run"
sync_up = "remote:sync_code"
2023-11-16 17:14:55 +01:00
sync_down = "remote:sync_output"
2023-11-22 19:27:48 +01:00
merge_data = "merge_data:run"
2023-11-08 17:26:44 +01:00
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pylance = "^0.5.9"
pytest-mock = "^3.11.1"
pytest-cov = "^4.1.0"
tabulate = "^0.9.0"
paramiko = "^3.3.1"
2023-11-11 18:46:27 +01:00
panel = "^1.3.1"
ipympl = "^0.9.3"
ipykernel = "^6.26.0"
ipywidgets-bokeh = "^1.5.0"
2023-11-22 19:27:48 +01:00
pandas-stubs = "^2.1.1.230928"
2023-11-08 17:26:44 +01:00
[tool.pytest.ini_options]
addopts = "--cov=quacc --capture=tee-sys"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[virtualenvs]
in-project = true
2023-11-09 12:23:05 +01:00
prefer-active-python = true
2023-11-08 17:26:44 +01:00