-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
47 lines (38 loc) · 964 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
45
46
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "python_tsp"
version = "0.5.0"
description = "Library to solve the Traveling Salesperson Problem in pure Python."
readme = "README_pypi.rst"
authors = ["Fillipe Goulart <fillipe.gsm@tutanota.com>", "Luan Leonardo <>"]
repository = "https://github.com/fillipe-gsm/python-tsp"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
tsplib95 = "^0.7.1"
requests = "^2.28.0"
numpy = "^2.0.0"
[tool.poetry.group.dev.dependencies]
mypy = "^0.991"
types-requests = "^2.28.11.5"
types-mock = "^4.0.15.2"
flake8 = "^6.0.0"
black = ">=24.4.2,<25.0"
pytest = "^7.4.0"
ipdb = "^0.13.13"
pytest-cov = "^4.1.0"
mock = "^5.1.0"
[tool.codespell]
ignore-words-list = 'astroid,asend'
[tool.black]
line-length = 79
[tool.ruff]
line-length = 79
fix = true
include = ["*.py", "*.pyi", "**/pyproject.toml"]
[tool.ruff.lint]
select = [
"NPY201", # numpy2-deprecation
]