-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·46 lines (43 loc) · 927 Bytes
/
pyproject.toml
File metadata and controls
executable file
·46 lines (43 loc) · 927 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
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ModDotPlot"
version = "0.9.9"
requires-python = ">= 3.7"
dependencies = [
"pysam",
"pandas",
"plotly",
"dash",
"plotnine==0.12.4",
"palettable",
"mmh3",
"setproctitle",
"numpy",
"pillow",
"patchworklib==0.6.3",
"cairosvg",
"pygenometracks",
"svgutils",
"cooler",
]
authors = [
{name = "Alex Sweeten", email = "alex.sweeten@nih.gov"},
{name = "Michael Schatz"},
{name = "Adam Phillippy"},
]
maintainers = [
{name = "Alex Sweeten", email = "alex.sweeten@nih.gov"}
]
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
keywords = ["dotplot", "sketching", "modimizer", "heatmap"]
[project.scripts]
moddotplot = "moddotplot.__main__:main"
[project.optional-dependencies]
# development dependency groups
test = [
"pytest",
"pytest-cov"
]