-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 892 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 892 Bytes
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
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "image-ranker"
version = "1.0.0"
description = "Pairwise image ranking web app powered by TrueSkill and Flask."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE.txt" }
authors = [
{ name = "Quentin Wach" },
]
dependencies = [
"Flask>=3.1,<4",
"trueskill>=0.4.5,<0.5",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4,<9",
]
[project.urls]
Homepage = "https://github.com/QuentinWach/image-ranker"
Changelog = "https://github.com/QuentinWach/image-ranker/blob/main/CHANGELOG.md"
Issues = "https://github.com/QuentinWach/image-ranker/issues"
Releases = "https://github.com/QuentinWach/image-ranker/releases"
[project.scripts]
image-ranker = "app:main"
[tool.setuptools]
py-modules = ["app", "elo"]
[tool.pytest.ini_options]
testpaths = ["tests"]