We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f876b7 commit ba86aabCopy full SHA for ba86aab
pyproject.toml
@@ -19,6 +19,7 @@ classifiers = [
19
"Programming Language :: Python :: 3.8"
20
]
21
dependencies = [
22
+ "importlib-resources",
23
"jsonschema==3.0.0",
24
"xmltodict==0.12.0",
25
"datacite==1.1.2",
@@ -54,6 +55,7 @@ zip-safe = false
54
55
exclude = ["tests", "docs"]
56
57
[tool.setuptools.package-data]
58
+"ckanext.doi.data" = ["*", "**/*"]
59
"ckanext.doi.theme" = ["*", "**/*"]
60
61
[tool.commitizen]
@@ -70,9 +72,14 @@ version_files = [
70
72
[tool.ruff.format]
71
73
quote-style = "single"
74
-[tool.pylint]
-max-line-length = 88
75
-disable = ["C0114", "R0903"]
+[tool.ruff.lint]
76
+ignore = [
77
+ "D100",
78
+ "D200",
79
+ "D202",
80
+ "D203",
81
+ "D212"
82
+]
83
84
[tool.docformatter]
85
wrap-summaries = 88
0 commit comments