-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1.1 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
[project]
name = "binary-classification-ratios"
version = "0.3.0"
description = "Binary classification ratios gathered in one package."
readme = "README.md"
requires-python = ">=3.8,<4.0"
dependencies = []
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering"
]
authors = [
{ name = "Peter Koval", email = "koval.peter@gmail.com" }
]
[project.urls]
Repository = "https://github.com/kovalp/binary_classification_ratios"
Issues = "https://github.com/kovalp/binary_classification_ratios/issues"
[dependency-groups]
dev = [
"pytest>=8.3.5; python_version=='3.8'",
"pytest-cov>=5.0.0; python_version=='3.8'",
"pytest>=8.4.1; python_version>='3.9'",
"pytest-cov>=6.2.1; python_version>='3.9'",
"bump-my-version>=1.2.1; python_version>='3.9'",
"ruff>=0.12.11",
]
[project.scripts]
binary-classification-ratios = "binary_classification_ratios.cli.main:main"
[tool.uv]
package = true
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"