-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (39 loc) · 1.86 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "helicon"
description = "A collection of tools for cryo-EM analysis of helical structures"
authors = [
{name = "Wen Jiang", email = "wjiang@gmail.com"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = ['cryosparc-tools', 'finufft', 'joblib', 'matplotlib', 'mrcfile', 'numba', 'numpy', 'pandas[html]', 'rich', 'scikit-image', 'scikit-learn', 'scipy', 'starfile', 'tqdm']
keywords = ["cryo-EM", "structural biology", "helical symmetry", "helical indexing", "image analysis", "Web apps"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Structural Biology",
"Topic :: Scientific/Engineering :: Image Processing"
]
[project.urls]
homepage = "https://github.com/jianglab/helicon"
[project.scripts]
helicon = "helicon.helicon:main"
[project.optional-dependencies]
shiny = ['ipyfilechooser', 'ipywidgets<8', 'plotly', 'requests', 'shiny', 'shinywidgets']
streamlit = ['atomium', 'bokeh==2.4.3', 'kneebow', 'numpy', 'psutil', 'qrcode', 'shapely', 'st-clickable-images', 'streamlit','streamlit-drawable-canvas', 'trackpy', 'uptime', 'xmltodict']
all = ['atomium', 'bokeh==2.4.3', 'kneebow', 'ipyfilechooser', 'ipywidgets<8', 'plotly', 'psutil', 'qrcode', 'requests', 'shapely', 'shiny', 'shinywidgets', 'st-clickable-images', 'streamlit','streamlit-drawable-canvas', 'trackpy', 'uptime', 'xmltodict']
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "helicon.__version__"}