-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
47 lines (41 loc) · 972 Bytes
/
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
[build-system]
requires = ["setuptools>=68", "wheel", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "elektronn3"
requires-python = ">=3.8"
description = "Utilities for 3D CNNs in PyTorch"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
dynamic = ["version"]
dependencies = [
"torch",
"numpy",
"scipy",
"h5py",
"matplotlib",
"numba",
"ipython",
"imageio",
"colorlog",
"tqdm",
"scikit-learn",
"scikit-image",
"tensorboardX",
"torchvision"
]
[tool.setuptools]
packages = ["elektronn3"]
[tool.setuptools_scm]
write_to = "elektronn3/_version.py"
[tool.ruff]
line-length = 120
[project.urls]
repository = "https://github.com/ELEKTRONN/elektronn3"