-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.58 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
58
59
60
61
62
63
64
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[project]
dynamic = ["version"]
name = "vamb"
dependencies = [
"numpy == 2.2.1",
"torch == 2.5.1",
"pycoverm == 0.6.2",
"networkx == 3.4.2",
"scikit-learn == 1.6.0",
"dadaptation == 3.2",
"loguru == 0.7.3",
"pyhmmer == 0.10.15",
"pyrodigal == 3.6.3",
]
# Currently pycoverm does not have binaries for Python > 3.13.
# The dependency resolver, will not error on Python 3.14, but attempt
# to build pycoverm from source, but will not get the deps required for that.
requires-python = "<3.14,>=3.10.0"
scripts = {vamb = "vamb.__main__:main"}
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-book-theme",
"myst-nb",
"ipywidgets",
"sphinx-new-tab-link!=0.2.2",
]
[metadata]
authors = [
{name = "Jakob Nybo Nissen", email = "[email protected]"},
{name = "Pau Piera", email = "[email protected]"},
{name = "Simon Rasmussen", email = "[email protected]"},
]
description = "Variational and Adversarial autoencoders for Metagenomic Binning"
license = "MIT"
readme = {file = "README.md"}
url = "https://github.com/RasmussenLab/vamb"
[build-system]
requires = [
"setuptools ~= 70.1",
"setuptools-scm >= 8.0",
"Cython ~= 3.0.1"
]
build-backend = "setuptools.build_meta"
[tool.ruff]
lint.ignore = [
"E722", # Use bare except.
"E402", # import not at top - needed for the hack in __init__.py
]
# pyproject.toml
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::DeprecationWarning",
"ignore::UserWarning",
]
[tool.setuptools_scm]