-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.58 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rascal2"
dynamic = ["version"]
dependencies = [
"RATapi",
"PyQt6",
]
description = "RasCAL2: GUI for Reflectivity Algorithm Toolbox (RAT)"
readme = "README.md"
license = {file = "LICENSE"}
[project.urls]
Documentation = "https://rascalsoftware.github.io/RAT/master/index.html"
Repository = "https://github.com/RascalSoftware/RasCAL-2"
[tool.setuptools.dynamic]
version = {attr = "rascal2.RASCAL2_VERSION"}
[tool.ruff]
line-length = 120
extend-exclude = ["examples/*"]
[tool.ruff.lint]
select = ["E", "F", "UP", "B", "SIM", "I", "N", "TD003", "A"]
ignore = ["SIM108", "N817"]
[tool.ruff.lint.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false
[tool.ruff.lint.pep8-naming]
# if overriding a PyQt method, please add it here!
# names should be in alphabetical order for readability
extend-ignore-names = ['allKeys',
'addItem',
'addItems',
'columnCount',
'createEditor',
'eventFilter',
'headerData',
'mergeWith',
'resizeEvent',
'rowCount',
'setData',
'setEditorData',
'setModelData',
'setValue',
'showEvent',
'sizeHint',
'stepBy',
'textFromValue',
'valueFromText',]