-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 742 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 742 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
[project]
name = "GenotypePrediction"
version = "0.1.0"
description = "Python reproductions of classical genotype prediction methods."
authors = [
{name = "jhonatan", email = "jhonyrf@gmail.com"},
]
dependencies = ["numpy>=2.4.4", "pandas>=3.0.2", "scikit-learn>=1.8.0", "scipy>=1.17.1"]
requires-python = ">=3.13"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[dependency-groups]
dev = [
"pytest>=9.0.3",
"ruff>=0.15.12",
]
[tool.pdm.scripts]
check = "python -m compileall src tests"
lint = "ruff check ."
format-check = "ruff format --check ."
test = "pytest"
ci = {composite = ["check", "test", "lint", "format-check"]}