-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 loc) · 1.09 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
[project]
name = "DSBplot"
version = "0.1.3"
authors = [
{ name="Tejasvi Channagiri", email="tchannagiri@gmail.com" },
]
description = "A package for visualizing alignment variations in DNA-seq data from double-strand break (DSB) experiments."
keywords = ["visualization", "genomics", "DNA-seq", "DSB", "double-strand break", "alignment", "graph", "histogram"]
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"Levenshtein",
"matplotlib",
"networkx",
"numpy",
"pandas",
"Pillow",
"plotly",
"scikit-learn",
]
[project.urls]
"Homepage" = "https://github.com/tchannagiri/DSBplot"
"Bug Tracker" = "https://github.com/tchannagiri/DSBplot/issues"
[project.scripts]
DSBplot = "DSBplot.__main__:entry_point"
DSBplot-process = "DSBplot.process:entry_point"
DSBplot-graph = "DSBplot.graph:entry_point"
DSBplot-histogram = "DSBplot.histogram:entry_point"
DSBplot-concat = "DSBplot.concat:entry_point"
[tool.setuptools.packages.find]
where = ["src"]