-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (56 loc) · 1.6 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = 'nomad-parser-plugins-simulation'
version = '1.0.2'
description = 'Collection of NOMAD parsers for simulation codes.'
readme = "README.md"
authors = [{ name = "The NOMAD Authors" }]
license = { file = "LICENSE" }
dependencies = [
"nomad-lab>=1.3.6",
"nomad-schema-plugin-run>=1.0.1",
]
[project.urls]
homepage = "https://github.com/nomad-coe/simulation-parsers"
[project.optional-dependencies]
dev = [
'mypy==1.0.1',
'pytest>= 5.3.0, < 6.0.0',
'pytest-timeout==1.4.2',
'pytest-cov==2.7.1',
'astroid==2.11.7',
'typing-extensions==4.4.0',
'ruff==0.1.4'
]
[tool.setuptools.packages.find]
where = [
".",
"simulationparsers/abacus",
]
[tool.ruff]
include = ["simulationparsers/*.py", "tests/*.py"]
select = [
"E", # pycodestyle
"W", # pycodestyle
"PL", # pylint
]
ignore = [
"E501", # Line too long ({width} > {limit} characters)
"E701", # Multiple statements on one line (colon)
"E731", # Do not assign a lambda expression, use a def
"E402", # Module level import not at top of file
"PLR0911", # Too many return statements
"PLR0912", # Too many branches
"PLR0913", # Too many arguments in function definition
"PLR0915", # Too many statements
"PLR2004", # Magic value used instead of constant
"PLW0603", # Using the global statement
"PLW2901", # redefined-loop-name
"PLR1714", # consider-using-in
"PLR5501", # else-if-used
]
fixable = ["ALL"]
[tool.setuptools.package-data]
simulationparsers = ['*/metadata.yaml', '*/README.md']