-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
93 lines (78 loc) · 2.09 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
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "ibridges"
authors = [
{ name = "Christine Staiger", email = "[email protected]" },
{ name = "Raoul Schram", email = "[email protected]" },
{ name = "Maarten Schermer", email = "[email protected]" },
]
description = "Package for accessing data and metadata on iRods servers."
readme = "README.md"
requires-python = ">=3.8"
keywords = ["irods", "data management", "storage"]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"python-irodsclient>=2.0.0",
"tqdm",
"importlib-metadata;python_version<'3.10'",
]
dynamic = ["version"]
[project.urls]
GitHub = "https://github.com/iBridges-for-iRODS/iBridges"
documentation = "https://github.com/iBridges-for-iRODS/iBridges"
[project.optional-dependencies]
test = [
"pylint",
"pytest",
"pytest-cov",
"ruff",
"mypy",
"types-tqdm",
]
docs = [
"sphinx<9",
"sphinx-rtd-theme",
"sphinxcontrib-napoleon",
"sphinx-autodoc-typehints",
"sphinx_inline_tabs",
"sphinx_copybutton",
]
[project.scripts]
ibridges = "ibridges.__main__:main"
[tool.setuptools]
packages = ["ibridges"]
[tool.setuptools_scm]
write_to = "ibridges/_version.py"
[[tool.mypy.overrides]]
module = [
"irods.*",
"importlib_metadata.*",
]
ignore_missing_imports = true
[tool.pylint.'MASTER']
ignore-patterns="_version.py"
[tool.pylint.'BASIC']
good-names=["e", "f", "m"]
[tool.pylint.'FORMAT']
max-line-length=100
max-locals=35
max-args=10
[tool.pylint.'MESSAGES CONTROL']
disable="too-many-positional-arguments"
[tool.ruff]
exclude = ["_version.py"]
line-length = 100
lint.select = ["D", "E", "F", "W", "I", "N"]
lint.ignore = ["D203", "D213"]