forked from ml-struct-bio/cryodrgn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (65 loc) · 1.44 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "cryodrgn"
dynamic = ["version"]
authors = [
{ name="Ellen Zhong", email="zhonge@princeton.edu" }
]
description = "cryoDRGN heterogeneous reconstruction"
readme = "README.md"
requires-python = ">=3.9,<3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"torch>=1.0.0",
"pandas<2",
"numpy<1.23",
"matplotlib<3.7",
"pyyaml",
"scipy>=1.3.1",
"scikit-learn",
"seaborn<0.12",
"cufflinks",
"jupyterlab",
"notebook<7",
"umap-learn",
"ipywidgets<8",
"healpy"
]
[project.optional-dependencies]
dev = [
"build",
"myst-parser",
"pre-commit",
"pyright==1.1.300",
"pytest>=6",
"sphinx",
"sphinx-rtd-theme",
"twine"
]
[project.scripts]
cryodrgn = "cryodrgn.command_line:main_commands"
cryodrgn_utils = "cryodrgn.command_line:util_commands"
[project.urls]
"Homepage" = "https://github.com/zhonge/cryodrgn"
[tool.setuptools_scm]
write_to = "cryodrgn/_version.py"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["."]
include = ["cryodrgn*"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-rA"
testpaths = [
"tests"
]
[tool.pyright]
exclude = ["build/**"]