-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (51 loc) · 1.35 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
[project]
name = "docassemblecli"
version = "0.0.26"
authors = [
{ name = "Jonathan Pyle", email = "jhpyle@gmail.com" },
]
description = "CLI utilities for using docassemble"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pyyaml",
"requests",
"packaging",
"watchdog",
"tomli",
"tomli_w",
]
[project.urls]
Homepage = "https://github.com/jhpyle/docassemblecli"
"Bug Tracker" = "https://github.com/jhpyle/docassemblecli/issues"
[project.scripts]
dainstall = "docassemblecli.commands:dainstall"
dacreate = "docassemblecli.commands:dacreate"
dadownload = "docassemblecli.commands:dadownload"
dauninstall = "docassemblecli.commands:dauninstall"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff.lint]
ignore = ["E722", "E226", "E24", "E501", "C901", "E305", "E306"]
[tool.pylint.messages_control]
disable = [
"missing-module-docstring",
"missing-function-docstring",
"line-too-long",
"bare-except",
"broad-exception-caught",
"too-many-branches",
"too-many-statements",
"import-outside-toplevel",
"too-many-boolean-expressions",
"too-many-locals",
"too-many-return-statements",
"too-few-public-methods",
"too-many-lines",
"too-many-nested-blocks",
]