-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (56 loc) · 1.21 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python_tsp"
version = "0.5.0"
description = "Library to solve the Traveling Salesperson Problem in pure Python."
readme = "README_pypi.rst"
authors = [
{name = "Fillipe Goulart", email = "fillipe.gsm@tutanota.com"},
{name = "Luan Leonardo"},
]
license = {text = "MIT"}
requires-python = ">=3.9"
dependencies = [
"tsplib95>=0.7.1,<0.8.0",
"requests>=2.28.0,<3.0.0",
]
[project.urls]
repository = "https://github.com/fillipe-gsm/python-tsp"
[dependency-groups]
dev = [
"types-requests>=2.28.11.5,<3.0",
"types-mock>=4.0.15.2,<5.0",
"pytest>=7.4.0,<8.0",
"ipdb>=0.13.13,<0.14",
"pytest-cov>=4.1.0,<5.0",
"mock>=5.1.0,<6.0",
"ruff>=0.15.21",
"ty>=0.0.59",
]
[tool.codespell]
ignore-words-list = 'astroid,asend'
[tool.ruff]
line-length = 79
fix = true
include = ["*.py", "*.pyi", "**/pyproject.toml"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# ruff-plugin-bugbear
"B",
# ruff-plugin-simplify
"SIM",
# isort
"I",
]