QuAcc/pyproject.toml

40 lines
754 B
TOML
Raw Normal View History

2023-05-17 14:02:29 +02:00
[tool.poetry]
name = "quacc"
version = "0.1.0"
description = ""
authors = ["Lorenzo Volpi <lorenzo.volpi@outlook.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
quapy = "^0.1.7"
pandas = "^2.0.3"
jinja2 = "^3.1.2"
pyyaml = "^6.0.1"
2023-10-31 03:01:24 +01:00
logging = "^0.4.9.6"
2023-05-17 14:02:29 +02:00
[tool.poetry.scripts]
2023-09-24 02:21:18 +02:00
main = "quacc.main:main"
comp = "quacc.main:estimate_comparison"
tohost = "scp_sync:scp_sync_to_host"
2023-05-17 14:02:29 +02:00
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pylance = "^0.5.9"
pytest-mock = "^3.11.1"
pytest-cov = "^4.1.0"
win11toast = "^0.32"
2023-11-05 14:16:53 +01:00
tabulate = "^0.9.0"
[tool.pytest.ini_options]
2023-09-16 01:59:49 +02:00
addopts = "--cov=quacc --capture=tee-sys"
2023-05-17 14:02:29 +02:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[virtualenvs]
in-project = true