-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (40 loc) · 967 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[tool.poetry]
name = "qcp-1d"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
[[tool.poetry.source]]
name = "conda-forge"
url = "https://anaconda.org/conda-forge"
priority = "primary"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.poetry.dependencies]
python = "~3.11"
numpy = "~1.26"
scipy = "~1.11"
setuptools = "~69.0"
tqdm = "^4.66"
matplotlib = "^3.8.2"
toml = "^0.10.2"
pytest = "^8.1.1"
scikit_tt = {git = "https://github.com/PGelss/scikit_tt.git#616ff8b", branch="master"}
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.267"
pre-commit = "^3.3.1"
yapf = "^0.32.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
# disable line-length lint since it is handled by yapf
ignore = ["E501"]
line-length = 118
# pyflakes, pycodestyle, isort
#select = ["F", "E", "W", "I001"]
[tool.yapf]
based_on_style = "pep8"
column_limit = 120
allow_split_before_dict_value = false