-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (46 loc) · 971 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "python_starter"
version = "0.1.0"
description = "A basic starter for Python packages."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"matplotlib",
"numpy",
]
[project.optional-dependencies]
develop = [
"black",
"docformatter",
"isort",
"mypy",
"pylint>=2.14.5",
"pytest-pylint>=0.18.0",
"pytest>=7.2.2",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
python_starter = ["py.typed"]
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.isort]
py_version = 310
profile = "black"
multi_line_output = 2
skip_glob = ["venv/*"]
split_on_trailing_comma = true
[tool.mypy]
strict_equality = true
disallow_untyped_calls = true
warn_unreachable = true
exclude = ["venv/*"]
[[tool.mypy.overrides]]
module = [
"matplotlib.*",
]
ignore_missing_imports = true