-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
37 lines (30 loc) · 1.05 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
[project]
name = "cellscope"
version = "0.1.0"
description = "CellScope: capture, package (RO-Crate+PROV), and visualize cell-level relations in Jupyter notebooks."
authors = [{name="Guillermo Camacho Hortelano"}]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"nbformat>=5.9",
"networkx>=3.1",
"rocrate>=0.9.8",
"pyvis>=0.3.1",
"requests>=2.31",
"jupyter_server>=2.0"
]
[project.scripts]
cellscope = "cellscope_cli.__main__:main"
[tool.setuptools]
# Explicitly list packages so the server extension always ships into site-packages.
packages = ["cellscope", "cellscope_cli", "cellscope_server"]
package-dir = {"" = "."}
[tool.setuptools.package-data]
cellscope_server = ["jupyter_server_config.d/*.json"]
[tool.setuptools.data-files]
"etc/jupyter/jupyter_server_config.d" = ["cellscope_server/jupyter_server_config.d/cellscope_server.json"]
[project.entry-points."jupyter_server.extension"]
cellscope_server = "cellscope_server"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"