-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (40 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
42 lines (40 loc) · 1.17 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
name = "appion"
version = "2025.07.23"
readme = "README.md"
description = "A data quality workflow for assessing images produced with Cryo-EM. Performs motion correction and CTF estimation using user-provided inputs and information stored in a database that uses the Leginon data model."
license = "Apache-2.0"
authors = [
{ name = "John Pellman", email = "john+github@libjpel.so"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"django >= 4.2.22",
"numpy",
"mrcfile",
"pexpect",
"py-cpuinfo",
"distro",
"psutil",
"argunparse",
"pyyaml",
"pytest",
"parametrize_from_file",
"jinja2",
"submitit >= 1.5.4"
]
# Need a newer version of Python or we wind up with partial initialization
# issue when using LocalCluster
# https://github.com/dask/distributed/issues/4168
# https://bugs.python.org/issue43517
requires-python = ">=3.10,<4.0"
[project.urls]
Homepage = "https://github.com/nysbc/appion/"
Issues = "https://github.com/nysbc/appion/issues"