-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (66 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
78 lines (66 loc) · 1.53 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
[build-system]
requires = [
"setuptools==80.9.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "docassemble.AssemblyLine"
version = "4.5.1"
description = "Quickly go from a paper court form to a runnable, guided, step-by-step web application powered by Docassemble. Swap out branding and pre-built questions to meet your needs."
readme = "README.md"
authors = [
{ name="Suffolk Legal Innovation and Technology Lab", email="litlab@suffolk.edu" },
]
dependencies = [
"docassemble.ALToolbox>=0.16.0",
"docassemble.GitHubFeedbackForm>=0.4.1.1",
]
license="MIT"
license-files = [
"LICENSE"
]
[project.urls]
Homepage = "https://courtformsonline.org"
[tool.setuptools.packages.find]
where = [
".",
]
[tool.black]
extend-exclude = '(__init__.py|setup.py)'
[tool.docsig]
check-property-returns = false
check-overridden = false
check-class = true
disable = [
"SIG305"
]
[tool.mypy]
# global options
exclude = '''(?x)(
^setup.py$
)'''
# per-module options:
[[tool.mypy.overrides]]
module = "docassemble.webapp.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "docassemble.base.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pycountry"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "backports.*"
ignore_missing_imports = true
[dependency-groups]
dev = [
"docassemble.base>=1.7",
"docassemble.webapp>=1.7",
"pytest>=7.0",
"mypy",
"pandas-stubs",
"sqlalchemy[mypy]>=1.3.0",
"types-PyYAML",
"types-requests",
"types-psycopg2",
]