-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (31 loc) · 1.15 KB
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "bioencoder"
authors = [
{name = "Arthur Porto", email = "[email protected]"},
{name = "Moritz Lürig", email = "[email protected]"},
]
description = "A metric learning toolkit"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["metric learning", "biology"]
dynamic = ["dependencies"]
version = "1.0.0"
[project.urls]
"Homepage" = "https://github.com/agporto/BioEncoder"
"Bug Tracker" = "https://github.com/agporto/BioEncoder/issues"
[project.scripts]
bioencoder_configure = "bioencoder.scripts.configure:cli"
bioencoder_split_dataset = "bioencoder.scripts.split_dataset:cli"
bioencoder_train = "bioencoder.scripts.train:cli"
bioencoder_swa = "bioencoder.scripts.swa:cli"
bioencoder_lr_finder = "bioencoder.scripts.lr_finder:cli"
bioencoder_interactive_plots = "bioencoder.scripts.interactive_plots:cli"
bioencoder_model_explorer = "bioencoder.scripts.model_explorer_wrapper:cli"
bioencoder_inference = "bioencoder.scripts.inference:cli"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}