-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
73 lines (64 loc) · 2.23 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
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pytom-match-pick"
version = "0.7.8"
description = "PyTOM's GPU template matching module as an independent package"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Marten Chaillet", email = "[email protected]"},
{name = "Sander Roet", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: GPU :: NVIDIA CUDA",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Typing :: Typed"
]
requires-python = ">= 3.10"
dependencies = [
"numpy",
"cupy!=13.0.*", #see https://github.com/SBC-Utrecht/pytom-match-pick/issues/106
"voltools",
"tqdm",
"mrcfile",
"starfile",
"importlib_resources",
"packaging",
"scipy",
"healpix",
]
[project.optional-dependencies]
plotting = ["matplotlib", "seaborn"]
dev = ["ruff", "pre-commit", "mkdocs", "mkdocs-material", "markdown-exec", "mkdocs-glightbox"]
all = ["pytom-match-pick[plotting]", "pytom-match-pick[dev]"]
[project.scripts]
"pytom_create_mask.py" = "pytom_tm.entry_points:pytom_create_mask"
"pytom_create_template.py" = "pytom_tm.entry_points:pytom_create_template"
"pytom_match_template.py" = "pytom_tm.entry_points:match_template"
"pytom_extract_candidates.py" = "pytom_tm.entry_points:extract_candidates"
"pytom_merge_stars.py" = "pytom_tm.entry_points:merge_stars"
# as of writing setuptools does not obey entry-point spec here
# ref: https://packaging.python.org/en/latest/specifications/entry-points/
# might fix itself in the future
"pytom_estimate_roc.py" = "pytom_tm.entry_points:estimate_roc [plotting]"
[project.urls]
Repository = "https://github.com/SBC-Utrecht/pytom-match-pick"
Issues = "https://github.com/SBC-Utrecht/pytom-match-pick/issues"
[tool.setuptools]
packages = ["pytom_tm"]
package-dir = {"" = "src"}
[tool.coverage.run]
concurrency = ["multiprocessing", "thread"]
parallel = true
[tool.ruff]
line-length = 88
[tool.ruff.lint]
extend-select = ["E501"]