forked from mxhulab/cryosieve
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 1.37 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
43
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cryosieve"
version = "1.2.8"
authors = [
{ name="Jianying Zhu", email="zhu-jy20@mails.tsinghua.edu.cn" },
{ name="Qi Zhang", email="q-zhang20@mails.tsinghua.edu.cn" },
{ name="Hui Zhang", email="zhanghui23@mails.tsinghua.edu.cn" },
{ name="Zuoqiang Shi", email="zqshi@tsinghua.edu.cn" },
{ name="Mingxu Hu", email="humingxu@smart.org.cn" },
{ name="Chenglong Bao", email="clbao@tsinghua.edu.cn" },
]
description = "CryoSieve: a particle sorting and sieving algorithm for single particle analysis in cryo-EM"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
dependencies = [
"numpy>=1.18",
"mrcfile>=1.2",
"starfile>=0.4.1,<0.5",
"pandas<2.2",
"cupy>=10",
"torch>=1.10"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Environment :: GPU :: NVIDIA CUDA",
"Topic :: Scientific/Engineering :: Image Processing"
]
[project.urls]
"Homepage" = "https://github.com/mxhulab/cryosieve"
[project.scripts]
"cryosieve" = "cryosieve.__main__:main"
"cryosieve-core" = "cryosieve.core:core"
"cryosieve-csrefine" = "cryosieve.cs_refine:main"
"cryosieve-csrhbfactor" = "cryosieve.cs_rhbfactor:main"