-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1015 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
[project]
name = "sb-cli"
version = "0.1.0"
description = "Submit predictions to the SWE-bench API and manage your runs"
authors = [
{ name = "SWE-bench team", email = "[email protected]" }
]
dependencies = [
"typer>=0.9.0",
"requests",
"rich",
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/swe-bench/sb-cli"
Issues = "https://github.com/swe-bench/sb-cli/issues"
[project.scripts]
sb-cli = "sb_cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["sb_cli"]
[tool.ruff]
line-length = 88
src = ["sb_cli"]
[project.optional-dependencies]
dev = [
"mkdocs>=1.5.0",
"mkdocs-material>=9.0.0",
]