forked from iBridges-for-iRODS/iBridges-GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (68 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (68 loc) · 1.87 KB
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
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "ibridgesgui"
authors = [
{ name = "Christine Staiger", email = "c.staiger@uu.nl" },
]
description = "Graphical user interface for accessing data and metadata on iRODS servers."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["irods", "data management", "storage"]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 3 - Alpha",
]
dependencies = [
"PyQt6>=6.4.2",
"ibridges==1.1.0",
"setproctitle==1.3.3",
"importlib-resources;python_version<='3.10'",
]
dynamic = ["version"]
[project.urls]
GitHub = "https://github.com/chStaiger/iBridges-Gui"
documentation = "https://github.com/chStaiger/iBridges-Gui"
[project.optional-dependencies]
test = [
"pylint",
"pytest",
"pytest-cov",
"ruff",
"mypy",
]
[project.scripts]
ibridges-gui = "ibridgesgui.__main__:main"
[tool.setuptools]
packages = ["ibridgesgui"]
[tool.setuptools_scm]
write_to = "ibridgesgui/_version.py"
[tool.mypy.overrides]
module = [
"irods.*",
]
ignore_missing_imports = true
[tool.pylint.'MASTER']
ignore-patterns="_version.py"
ignore-paths=["ibridgesgui/ui_files"]
extension-pkg-whitelist=["PyQt6"]
[tool.pylint.'BASIC']
good-names=["e", "f", "m"]
[tool.pylint.'VARIABLES']
extension-pkg-whitelist="PyQt6"
disable=["E0611", "E0401", "E0401", "E1101",
"W0718", "fixme", "too-many-arguments",
"R0912", "R0916", "R0911", "R0801", "R0902"]
max-line-length=100
max-locals=35
max-args=10
[tool.ruff]
exclude = ["_version.py", "ui_files"]
line-length = 100
lint.select = ["D", "E", "F", "W", "I", "N"]
lint.ignore = ["D203", "D213"]