-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (63 loc) · 1.19 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "hammerfin"
version = "0.1.0"
description = "ProjectDescription"
authors = ["Thomas Kientz <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.24.3"
pandas = "^2.0.1"
sphinx = "^7.0.1"
sphinxawesome-theme = "^4.1.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.2"
pytest = "^7.3.1"
ruff = "^0.0.269"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 120
fix = true
ignore = ["D100", "D104", "D205", "D200"]
[tool.ruff.pydocstyle]
convention = "numpy"
[tool.ruff.per-file-ignores]
"**/__init__.py" = ["F401"]
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = """
too-many-arguments,
not-callable,
missing-module-docstring,
import-error,
too-few-public-methods,
logging-fstring-interpolation,
"""
good-names = "i,j,k,x,y,z,ex,Run,_,e,_E,X"
[tool.pylint.MASTER]
ignore-paths = [
"docs",
"tests",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"