-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
58 lines (49 loc) · 1.18 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
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyaptamer"
version = "0.0.1.dev0"
description = "Python library for aptamer simulation"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name="German Center for Open Source AI", email="info@gcos.ai"}
]
dependencies = [
"biopython>=1.83",
"datasets>=4.0.0",
"lightning>=2.5.3",
"numpy>=2.0.2",
"pandas>=2.0.0",
"scikit-base",
"torch>=2.5.1",
"scikit-learn>=1.3.0,<1.8.0",
"skorch",
"imblearn",
"datasets",
"requests",
]
[project.optional-dependencies]
dev = [
"ruff>=0.12.0",
"pytest>=8.0.0",
"pre-commit",
]
[tool.ruff]
line-length = 88
target-version = "py310"
exclude = ["__pycache__", ".venv", "build", "dist", ".git"]
[tool.ruff.lint]
select = ["E", "F", "B", "I", "UP", "N", "C4"]
ignore = ["N803", "N806", "N812"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
[tool.setuptools.packages.find]
include = ["pyaptamer*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
pyaptamer = ["datasets/data/*.csv", "datasets/data/*.pdb"]