-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 936 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 936 Bytes
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "currentview"
version = "0.1.0"
description = "A package for analyzing tRNA ionic current signal"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.20.0",
"matplotlib>=3.5.0",
"plotly>=5.14.0",
"kaleido>=0.2.0",
"nbformat>=5.10.4",
"pysam>=0.22.0",
"scikit-learn<2.0,>=1.4",
"umap-learn>=0.5.11",
"pod5>=0.3.23",
"dash>=2.14.0",
"dash-bootstrap-components>=1.5.0",
"scipy>=1.10.0",
"pandas>=1.5.0",
]
[project.optional-dependencies]
dev = ["black>=23.0.0","isort>=5.12.0","flake8>=6.0.0","pytest>=7.0.0","pytest-cov>=4.0.0"]
[project.scripts]
currentview = "currentview.__main__:main"
currentview-app = "currentview.app.run:main"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["currentview"]
[tool.setuptools.package-data]
currentview = ["app/assets/*"]