-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (58 loc) · 2 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (58 loc) · 2 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
[project]
authors = [
{ name = "Utrecht University Yoda team", email = "yoda@uu.nl" }
]
dependencies = [
'python-irodsclient==3.3.0; python_version >= "3.9"',
'python-irodsclient==3.1.1; python_version < "3.9"',
'humanize>=0.5',
'iteration_utilities==0.11.0',
'dnspython>=2.2.0',
'backports.functools-lru-cache>=1.6.4',
'PyYaml',
'cryptography==46.0.7'
]
description = "Client-side tools for Yoda / iRODS"
license = "GPL-3.0-only"
name = "yclienttools"
version = "3.0.1"
[project.scripts]
yreport_datapackageinfo = "yclienttools.reportdatapackageinfo:entry"
yreport_dataobjectspercollection = "yclienttools.reportdoc:entry"
yreport_datapackagestatus = "yclienttools.reportdatapackagestatus:entry"
yreport_dataduplication = "yclienttools.reportdataduplication:entry"
yreport_intakedataduplication = "yclienttools.reportintakedataduplication:entry"
yreport_collectionsize = "yclienttools.reportsize:entry"
yreport_depositpending = "yclienttools.reportdepositpending:entry"
yreport_grouplifecycle = "yclienttools.reportgrouplifecycle:entry"
yreport_intake = "yclienttools.reportintake:entry"
yreport_linecount = "yclienttools.reportlinecount:entry"
yreport_oldvsnewdata = "yclienttools.reportoldvsnewdata:entry"
ycleanup_files = "yclienttools.cleanupfiles:entry"
ydf_irm = "yclienttools.depthfirst_irm:entry"
ywhichgroups = "yclienttools.whichgroups:entry"
ygrepgroups = "yclienttools.grepgroups:entry"
ygroupinfo = "yclienttools.groupinfo:entry"
yimportgroups = "yclienttools.importgroups:entry"
yexportgroups = "yclienttools.exportgroups:entry"
yensuremembers = "yclienttools.ensuremembers:entry"
yrecatgroups = "yclienttools.recatgroups:entry"
yrmusers = "yclienttools.rmusers:entry"
yrmgroups = "yclienttools.rmgroups:entry"
[tool.flake8]
ignore = [
"E221",
"E241",
"E402",
"W503",
"W504"
]
import-order-style = "smarkets"
strictness = "short"
docstring_style = "sphinx"
max-line-length = 250
exclude = [
"venv"
]
[tool.mypy]
ignore_missing_imports = true