forked from tomotools/tomotools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 883 Bytes
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 883 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
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tomotools"
description = "Tomotools"
readme = "README.md"
version = "2.3"
requires-python = ">=3.7"
license = {text = "None so far"}
authors = [
{email = "moritz.wachsmuth@bioquant.uni-heidelberg.de", name = "Moritz Wachsmuth-Melm"},
{email = "b.wimmer@bioc.uzh.ch", name = "Benedikt Wimmer"},
]
dependencies = [
"Click",
"numpy",
"pandas",
"mrcfile",
"emfile",
"dynamotable",
"matplotlib",
]
[tool.setuptools]
packages = ["tomotools"]
[project.optional-dependencies]
cryocare = [
"tensorflow==2.4",
"Cryocare",
"packaging",
]
dev = [
"pytest",
"ruff",
]
[project.scripts]
tomotools = "tomotools:tomotools"
[project.urls]
homepage = "https://github.com/tomotools/tomotools"
repository = "https://github.com/tomotools/tomotools"