-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.48 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
59
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "muvit"
dynamic = ["version"]
description = "Multi-Resolution Vision Transformers for Learning Across Scales in Microscopy"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11,<3.14"
license = { text = "BSD 3-Clause License" }
authors = [
{ name = "Albert Dominguez Mantes", email = "albert.dominguezmantes@epfl.ch" },
{ name = "Martin Weigert", email = "martin.weigert@tu-dresden.de" },
]
urls = { Homepage = "https://github.com/weigertlab/muvit" }
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering"
]
dependencies = [
"einops",
"lightning",
"matplotlib",
"numpy",
"Pillow",
"pyyaml",
"scikit-image",
"torch",
"wandb",
"x-transformers"
]
[project.optional-dependencies]
testing = [
"tox",
"pytest",
"pytest-cov",
"pytest-mock"
]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*"]
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
local_scheme = "no-local-version"
[tool.flake8]
ignore = ["E116", "E501", "E203"]