-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 834 Bytes
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 834 Bytes
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
[build-system]
requires = ["setuptools>=41.2", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "folium"
dynamic = [
"version",
"description",
"readme",
"license",
"authors",
"keywords",
"classifiers",
"dependencies",
"optional-dependencies",
]
requires-python = ">=3.9"
[tool.interrogate]
ignore-init-method = true
ignore-init-module = false
ignore-magic = false
ignore-semiprivate = false
ignore-private = false
ignore-module = false
fail-under = 85
exclude = ["setup.py", "docs", "tests"]
verbose = 1
quiet = false
color = true
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
lint.select = [
"F", # flakes
"I", # import sorting
"U", # upgrade
]
target-version = "py39"
line-length = 120
[lint.per-file-ignores]
"docs/conf.py" = ["E402"]