-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 877 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
[tool.poetry]
name = "Facility Location API"
version = "0.1.0"
description = ""
authors = ["Luan <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
highspy = "^1.5.3"
pyomo = "^6.7.1"
fastapi = "^0.115.3"
uvicorn = {extras = ["standard"], version = "^0.29.0"}
orjson = "^3.10.0"
dynaconf = "^3.2.5"
shapely = "^2.0.3"
scikit-learn = "^1.5.0"
requests = "^2.31.0"
cost-matrix = "^0.1.1"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
isort = "^5.13.2"
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
mypy = "^1.9.0"
autopep8 = "^2.1.0"
flake8 = "^7.0.0"
ipython = "^8.23.0"
types-requests = "^2.31.0.20240406"
mock = "^5.1.0"
types-mock = "^5.1.0.20240311"
httpx = "^0.27.0"
[tool.autopep8]
max_line_length = 79
[tool.black]
line-length = 79
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"