-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (81 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
91 lines (81 loc) · 2.09 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
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
91
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cryofm"
dynamic = ["version"]
description = "CryoEM foundation model project"
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
authors = [
{name = "Yi Zhou", email = "zhouyi.naive@bytedance.com"},
{name = "Yilai Li", email = "yilai.li@bytedance.com"},
{name = "Jing Yuan", email = "yuanjing.eugene@bytedance.com"},
]
keywords = ["cryoem", "foundation-model", "deep-learning"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
dependencies = [
"pandas",
"numpy<2.0",
"torch",
"scipy",
"mmengine",
"monai",
"mrcfile",
"starfile>=0.4.12,!=0.11,!=0.12,!=0.111",
"xmltodict",
"requests",
"accelerate",
"tqdm",
"einops",
"diffusers",
"safetensors",
"lightning",
"torchdiffeq",
"filelock",
"scikit-image",
"wandb",
"mmcv-lite",
"matplotlib",
"huggingface_hub",
]
[project.optional-dependencies]
dev = [
"ruff>=0.1.0",
]
[project.scripts]
cfm = "cryofm.cli:main"
[project.urls]
Homepage = "https://bytedance-seed.github.io/cryofm/"
Documentation = "https://bytedance-seed.github.io/cryofm/docs/"
Repository = "https://github.com/ByteDance-Seed/cryofm"
Issues = "https://github.com/ByteDance-Seed/cryofm/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
version = {attr = "cryofm.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py38"
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
]
ignore = []
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"] # Allow unused imports in __init__.py