-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (44 loc) · 921 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "stlts"
authors = [
{name = "Sota Sato", email = "sotasato@nii.ac.jp"},
]
license = { file = "LICENSE" }
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = [
"numpy",
"gurobipy==11.0.0",
"scipy",
"matplotlib",
"pandas",
"plotly==5.20.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"flake8",
"mypy",
"black",
"isort"
]
[tool.setuptools.packages.find]
exclude = ["build", "contrib", "experiments", "paper"]
[tool.setuptools_scm]
[tool.black]
line-length = 88
skip-string-normalization = true
preview = true
[tool.isort]
line_length = 88
profile = "black"
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true
strict_optional = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--doctest-modules"