-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (33 loc) · 966 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
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "matrix_revisited"
version = "0.1.0"
description = "Fun with Gurobi's 'Matrix Revisited' problem"
readme = "README.md"
authors = ["Riley Clement <rileyclement@gmail.com>"]
maintainers = ["Riley Clement <rileyclement@gmail.com>"]
[tool.poetry.dependencies]
python = ">=3.8, <3.11"
gurobipy = "^9.5.1"
numpy = "^1"
scipy = "^1"
gurobipy_exceptions = {git = "https://github.com/venaturum/gurobipy_exceptions.git", rev = "main"}
pandas = "^1"
scikit-learn = "^1"
matplotlib = "^3.5"
seaborn = "^0.11"
[tool.poetry.scripts]
matrix_revisited = "matrix_revisited.main:cli"
[tool.poetry.dev-dependencies]
ipykernel = "^5"
isort = ">=5.8"
black = {version = "*", python = "^3.6.2"}
flake8 = ">=3.9"
[tool.isort]
# make it compatible with black
profile = "black"
multi_line_output = 3
src_paths = ["."]