-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.31 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "barcodebert"
authors = [
{ name="Example Author", email="[email protected]" },
]
description = "repository for training and evaluating BarcodeBERT"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"accelerate>=0.23.0",
"boto3>=1.28.51",
"botocore>=1.31.51",
"cmake>=3.27.5",
"einops>=0.6.1",
"matplotlib",
"numpy>=1.25.0",
"omegaconf>=2.3.0",
"opt-einsum>=3.3.0",
"pandas>=2.1.1",
"peft>=0.5.0",
"scikit-learn>=1.3.0",
"scipy>=1.11.2",
"seaborn",
"torch>=2.0.1",
"torchtext>=0.15.2",
"torchvision>=0.15.2",
"transformers>=4.29.2",
"umap-learn>=0.5.3",
"wandb",
]
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = ["black==25.1.0", "pre-commit>=3.2.0"]
[project.urls]
Homepage = "https://github.com/Kari-Genomics-Lab/BarcodeBERT"
Issues = "https://github.com/Kari-Genomics-Lab/BarcodeBERT/issues"
[tool.black]
line-length = 120
target-version = ['py311']
[tool.setuptools]
packages = ["barcodebert"]
[tool.setuptools.dynamic]
version = {attr = "barcodebert.__version__"}