-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (66 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
81 lines (66 loc) · 1.7 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
78
79
80
81
[project]
name = "instance-forge"
requires-python = ">=3.13"
description = "A framework with instances and solvers for common scheduling problems."
readme = "README.md"
authors = [{name = "Simon M. 0ab2bcf6", email = "simonm96@gmx.de"}]
classifiers = [
"License :: OSI Approved :: 2BSD",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13"
]
version = "0.0.1"
license = {file = "LICENSE.txt"}
keywords = ["template", "development"]
dependencies = [
"numpy", # provides additional typing-stubs for numpy etc.
]
[project.optional-dependencies]
dev = [
"mypy",
"pylint",
"flake8",
"pytest"
]
# build system
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
# data, which should be included into the package must be listed here
[tool.setuptools]
package-data = {"*" = ["py.typed", "README.md", "LICENSE.txt", "*.pyi"]}
# mypy settings
[tool.mypy]
python_version = "3.13"
warn_unused_configs = true
follow_imports_for_stubs = true
warn_redundant_casts = true
strict = true
warn_unused_ignores = false
# pylint settings
[tool.pylint.MASTER]
fail-under = 9.0
[tool.pylint.BASIC]
good-names = ["i", "j", "k", "_", "e", "f", "n", "N", "m",
"M", "q", "C", "A", "R", "d"]
good-names-rgxs = "_?[xXyYzZ]\\d?_?"
[tool.pylint.DESIGN]
max-args = "8"
[tool.pylint."MESSAGES CONTROL"]
disable = [
"not-an-iterable"
]
# flake8 settings
# flake8 is not actually supported yet, but will soon be
[tool.flake8]
extend-exclude = [
".git",
".gitignore",
"*.pot",
"*.py[co]",
"__pycache__",
"venv",
".env"
]