forked from nomad-coe/nomad-parser-plugin-example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
99 lines (86 loc) · 2.78 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = [
"setuptools>=61.0.0",
"setuptools-scm>=8.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "nomad-parser-magres"
dynamic = ["version"]
description = "A NOMAD plugin for parsing magres files."
readme = "README.md"
authors = [
{ name = "Jose M. Pizarro", email = "[email protected]" }
]
license = { text = "Apache-2.0" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"nomad-lab@git+https://github.com/nomad-coe/nomad.git@develop",
"nomad-schema-plugin-simulation-workflow@git+https://github.com/nomad-coe/nomad-schema-plugin-simulation-workflow.git@develop",
"nomad-schema-plugin-run@git+https://github.com/nomad-coe/nomad-schema-plugin-run.git@develop",
]
[project.urls]
"Homepage" = "https://github.com/nomad-coe/nomad-parser-magres"
"Bug Tracker" = "https://github.com/nomad-coe/nomad-parser-magres/issues"
"Documentation" = "https://nomad-coe.github.io/nomad-parser-magres/"
[project.optional-dependencies]
dev = [
"ruff",
"pytest",
"structlog==22.3.0",
"python-logstash==0.4.6",
"mongoengine>=0.20",
"pyjwt[crypto]==2.6.0",
"unidecode==1.3.2",
"fastapi==0.92.0",
"zipstream-new==1.1.5",
"lxml_html_clean>=0.1.0",
]
[tool.ruff]
include = ["src/nomad_parser_magres/*.py", "tests/*.py"]
lint.select = [
"E", # pycodestyle
"W", # pycodestyle
"PL", # pylint
]
lint.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
]
lint.fixable = ["ALL"]
# Same as Black.
line-length = 88
indent-width = 4
# Assume Python 3.9
target-version = "py39"
# this is entirely optional, you can remove this if you wish to
[tool.ruff.format]
# use single quotes for strings.
quote-style = "single"
# indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
nomad_parser_magres = ['*/nomad_plugin.yaml']