-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 748 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 748 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
33
34
35
36
37
38
[project]
name = "SeqLP"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "Nils Hofmann", email = "nilhof01@gmail.com"},
{name = "nilshof01", email = "n.hofmann.99@web.de"},
]
dependencies = [
"pytest>=7.1.2",
"requests>=2.31.0",
"transformers>=4.39.3",
"pandas==1.4.1",
#"scikit-learn>=1.7.3",
"editdistance==0.6.2",
"torch>=2.2.2",
"biopython",
"matplotlib",
"seaborn",
"numpy==1.22.3",
"openblas==0.3.19"
]
requires-python = "==3.11.*"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
package-dir = "src"
distribution = true
[tool.pdm.dev-dependencies]
test = [
"pytest>=7.1.2",
]
[tool.pdm.scripts]
test = "python -m pytest -s tests"