-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.4 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
[project]
name = "proteingym-benchmark"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Shu Zhao", email = "shu.zhao@xebia.com" },
{ name = "Cor Zuurmond", email = "Cor.Zuurmond@xebia.com" },
{ name = "Prashant Srivastava", email = "Prashant.Srivastava@xebia.com" },
{ name = "Henning Redestig", email = "Henning.Redestig@iff.com" },
{ name = "Karel van der Weg", email = "karel.weg@iff.com" },
]
dynamic = ["version"] # Dynamically set hatch version using git tags
requires-python = ">=3.12"
dependencies = [
"typer>=0.15.2",
"proteingym-base",
"pycm>=4.3",
"scipy>=1.15.3",
"dvc>=3.59.2",
"boto3>=1.38.27",
"pandas>=2.2.0", # TODO: Replace with Polars when custom metric is implemented
]
[project.scripts]
proteingym-benchmark = "proteingym.benchmark.__main__:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/proteingym/benchmark/__about__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/proteingym"]
[tool.uv.sources]
# TODO: After proteingym-base is public repositories, below reference can be updated
proteingym-base = { path = "dist/proteingym_base-0.1.0b1-py3-none-any.whl" }
[tool.ruff]
line-length = 88
[dependency-groups]
dev = [
"hatch>=1.14.1",
"isort>=6.0.1",
"pre-commit>=4.2.0",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"ruff>=0.12.9",
]