-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (54 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
65 lines (54 loc) · 1.32 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
[build-system]
requires = ["setuptools>=60,<82.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "docassemble.EFSPIntegration"
dynamic = ["version"]
readme = "README.md"
requires-python=">=3.10,>=3.12.3,<3.13"
dependencies = [
"docassemble.AssemblyLine>=3.5.0",
"docassemble.ALToolbox>=0.6.2",
"requests>=2.25.1"
]
license="MIT"
license-files = ["LICEN[CS]E*"]
authors = [
{ name="Bryce Willey", email="bryce.willey@suffolk.edu" },
]
[project.urls]
GitHub = "https://github.com/SuffolkLITLab/docassemble-EFSPIntegration"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic]
version = {attr = "docassemble.EFSPIntegration.__version__"}
[dependency-groups]
dev = [
"docassemble.base==1.9.2",
"docassemble.webapp==1.9.2",
"types-requests",
"types-python-dateutil",
"mypy",
"black",
]
[tool.black]
extend-exclude = '(__init__.py|setup.py)'
[tool.mypy]
# global options
no_implicit_optional = false
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 = "isodate"
ignore_missing_imports = true