-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (65 loc) · 1.63 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "pivotal-solver"
authors = [{ name = "Tomas Roun", email = "[email protected]" }]
description = "High-level Linear Programming solver using the Simplex algorithm"
readme = "README.md"
requires-python = ">=3.11"
keywords = [
"linear programming",
"linear programming solver",
"lp solver",
"lp",
"solver",
"linprog",
"numerical optimization",
"convex optimization",
"simplex",
"simplex algorithm",
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
dependencies = ["numpy"]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pytest", "ruff", "pre-commit"]
[project.urls]
Homepage = "https://github.com/tomasr8/pivotal"
Github = "https://github.com/tomasr8/pivotal"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D",
"ANN002",
"ANN003",
"ANN101",
"RET503",
"COM812",
"ISC001",
"N802",
"N803",
"N806",
"N818",
"S101",
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["ANN001", "ANN201", "PLR2004"]
[tool.ruff]
line-length = 120
[tool.ruff.lint.isort]
lines-after-imports = 2
[tool.setuptools]
packages = ["pivotal"]
[tool.setuptools.dynamic]
version = { attr = "pivotal.__version__" }
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"