-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (68 loc) · 1.7 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
[project]
authors = [{ name = "Alberto Santos Delgado", email = "[email protected]" },
{ name = "Henry Webel", email = "[email protected]"}]
name = "vuecore"
dynamic = ["version"]
description = "A Python package for plotting related to multimodal molecular data. Works with acore."
license = { text = "GNU General Public License v3" }
readme = "README.md"
requires-python = ">=3.9,<3.13"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy",
"pandas",
# "dsp-pandas", # has only pandas related dependencies
"scipy",
"plotly",
# "biopython",
"beautifulsoup4",
"requests",
"dash", # from dash import html
"networkx",
"matplotlib",
"kaleido",
"pyvis",
"wordcloud",
"cyjupyter",
"nltk",
"webweb",
"acore",
"dash-cytoscape",
]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-book-theme",
"myst-nb",
"ipywidgets",
"sphinx-new-tab-link!=0.2.2",
"jupytext",
]
dev = [
"black",
"flake8",
"ruff",
"isort",
"pytest",
"pytest-cov",
"twine",
"wheel",
"jupytext",
"ipykernel",
]
[project.urls]
Homepage = "https://github.com/Multiomics-Analytics-Group/vuecore"
Issues = "https://github.com/Multiomics-Analytics-Group/vuecore/issues"
Documentation = "https://analytics-core.readthedocs.io/"
[build-system]
requires = ["setuptools", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]