-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 784 Bytes
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 784 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
[tool.poetry]
name = "lpmodeler"
version = "0.1.0"
description = "Simple wrapper around scipy.optimize.linprog for linear and mixed integer programming problems"
authors = ["hitonanode <32937551+hitonanode@users.noreply.github.com>"]
readme = "README.md"
packages = [
{ include = "lpmodeler" },
]
[tool.poetry.dependencies]
python = "^3.11"
scipy = "^1.11.4"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.1"
mypy = "^1.10.0"
pytest = "^8.1.1"
[tool.mypy]
python_version = "3.11"
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001",
# pyupgrade
"UP006",
"UP007",
"UP035",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"