-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
90 lines (84 loc) · 2.04 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[project]
name = "aspire"
version = "0.13.0"
description = "Algorithms for Single Particle Reconstruction"
readme = "README.md" # Optional
requires-python = ">=3.8"
license = {file = "LICENSE"}
maintainers = [
{name = "ASPIRE Developers", email = "[email protected]"}
]
authors = [
{name = "Joakim Anden"},
{name = "Vineet Bansal"},
{name = "Josh Carmichael"},
{name = "Chris Langfield"},
{name = "Ayelet Heimowitz"},
{name = "Yoel Shkolnisky"},
{name = "Amit Singer"},
{name = "Kris Sowattanangkul"},
{name = "Garrett Wright"},
{name = "Junchao Xia"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
dependencies = [
"click",
"confuse >= 2.0.0",
"cvxpy",
"finufft==2.3.0",
"gemmi >= 0.6.5",
"grpcio >= 1.54.2",
"joblib",
"matplotlib >= 3.2.0",
"mrcfile",
"numpy>=1.21.5, <2.0.0",
"packaging",
"pooch>=1.7.0",
"pillow",
"psutil",
"pymanopt",
"PyWavelets",
"ray >= 2.9.2",
"scipy >= 1.10.0",
"scikit-learn",
"scikit-image",
"setuptools >= 0.41",
"tqdm",
]
[project.urls]
"Homepage" = "http://spr.math.princeton.edu/"
"Bug Reports" = "https://github.com/ComputationalCryoEM/ASPIRE-Python/issues"
"Source" = "https://github.com/ComputationalCryoEM/ASPIRE-Python"
[project.optional-dependencies]
gpu-12x = ["cupy-cuda12x", "cufinufft==2.3.0"]
dev = [
"black",
"bumpversion",
"check-manifest",
"flake8 >= 3.7.0",
"isort",
"jupyter",
"pooch",
"pyflakes",
"pydocstyle",
"pytest",
"pytest-cov",
"pytest-random-order",
"pytest-xdist",
"requests",
"sphinxcontrib-bibtex",
"sphinxcontrib-mermaid",
"sphinx-gallery",
"sphinx-rtd-theme >= 0.4.2",
"snakeviz",
"tox",
"twine",]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.scripts]
aspire = "aspire.__main__:main_entry"