-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (56 loc) · 1.41 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling >= 1.13.0"]
[project]
authors = [
{ email = "marius.merschformann@gmail.com", name = "Marius Merschformann" }
]
maintainers = [
{ email = "marius.merschformann@gmail.com", name = "Marius Merschformann" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"networkx>=3.2.1",
"matplotlib>=3.8.2",
]
description = "exvis visualizes MIP instances based on their expressions (variables and constraints) as a graph."
dynamic = [
"version",
]
keywords = [
"visualization",
"mixed-integer programming",
"mip",
"optimization",
"operations research",
]
license = { file = "LICENSE" }
name = "exvis"
readme = "README.md"
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/merschformann/exvis"
Repository = "https://github.com/merschformann/exvis"
[project.scripts]
exvis = "exvis.visualize:main"
[tool.ruff]
target-version = "py312"
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
"UP", # pyupgrade
]
line-length = 120
[tool.ruff.lint.mccabe]
max-complexity = 15
[tool.hatch.version]
path = "exvis/__about__.py"