-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·88 lines (79 loc) · 1.77 KB
/
Copy pathpyproject.toml
File metadata and controls
executable file
·88 lines (79 loc) · 1.77 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[project]
name = "parco"
version = "0.2.0"
description = "Parallel AutoRegressive Models for Multi-Agent Combinatorial Optimization"
authors = [
{name = "Federico Berto", email = "berto.federico2@gmail.com"},
{name = "Chuanbo Hua", email = "cbhua@kaist.ac.kr"},
{name = "Laurin Luttmann", email = "laurin.luttmann@gmail.com"},
{name = "Jiwoo Son"},
{name = "Junyoung Park"},
{name = "Kyuree Ahn"},
{name = "Changhyun Kwon"},
{name = "Lin Xie"},
{name = "Jinkyoo Park"}
]
license = "MIT"
dependencies = [
"rl4co>=0.5.2",
"ipykernel",
"ortools>=9.11.4210",
"huggingface-hub[cli]>=0.30.2",
]
requires-python = ">=3.10"
readme = "README.md"
[project.optional-dependencies]
dev = ["black", "pre-commit", "ruff", "pytest"]
solver = [
"ortools>=9.10.4067",
]
[tool.black]
line-length = 90
target-version = ["py311"]
include = '\.pyi?$'
exclude = '''
(
/(
\.direnv
| \.eggs
| \.git
| \.tox
| \.venv
| _build
| build
| dist
| venv
)/
)
'''
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
include = ["parco"]
[tool.hatch.build.targets.wheel]
include = ["parco"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
select = ["F", "E", "W", "I001"]
line-length = 90
show-fixes = false
target-version = "py311"
task-tags = ["TODO", "FIXME"]
ignore = ["E501"] # never enforce `E501` (line length violations), done in Black
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402", "F401"]
[tool.ruff.isort]
known-first-party = []
known-third-party = []
section-order = [
"future",
"standard-library",
"third-party",
"first-party",
"local-folder",
]
combine-as-imports = true
split-on-trailing-comma = false
lines-between-types = 1