-
Notifications
You must be signed in to change notification settings - Fork 212
/
pyproject.toml
72 lines (68 loc) · 2.23 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
[build-system]
requires = [
"setuptools"
]
[project]
name = "deepTools"
version = "3.5.5"
authors = [
{name="Fidel Ramirez"},
{name="Devon P Ryan"},
{name="Björn Grüning"},
{name="Friederike Dündar"},
{name="Sarah Diehl"},
{name="Vivek Bhardwaj"},
{name="Fabian Kilpert"},
{name="Andreas S Richter"},
{name="Steffen Heyne"},
{name="Thomas Manke"},
{email="[email protected]"}
]
requires-python = ">=3.8"
dependencies = [
"numpy >= 1.9.0",
"scipy >= 0.17.0",
"matplotlib >= 3.5.0",
"pysam >= 0.14.0",
"numpydoc >= 0.5",
"pyBigWig >= 0.2.1",
"py2bit >= 0.2.0",
"plotly >= 4.9",
"deeptoolsintervals >= 0.1.8"
]
description = "Useful tools for exploring deep sequencing data."
license = {file = "LICENSE.txt"}
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
readme = "README.rst"
[project.urls]
homepage = "https://pypi.python.org/pypi/deepTools/"
documentation = "https://deeptools.readthedocs.io/en/latest/"
repository = "https://github.com/deeptools/deepTools"
[tool.setuptools]
packages = ["deeptools"]
[project.scripts]
alignmentSieve = "deeptools.alignmentSieve:main"
bamCompare = "deeptools.bamCompare:main"
bamCoverage = "deeptools.bamCoverage:main"
bamPEFragmentSize = "deeptools.bamPEFragmentSize:main"
bigwigAverage = "deeptools.bigwigAverage:main"
bigwigCompare = "deeptools.bigwigCompare:main"
computeGCBias = "deeptools.computeGCBias:main"
computeMatrix = "deeptools.computeMatrix:main"
computeMatrixOperations = "deeptools.computeMatrixOperations:main"
correctGCBias = "deeptools.correctGCBias:main"
deeptools = "deeptools.deeptools_list_tools:main"
estimateReadFiltering = "deeptools.estimateReadFiltering:main"
estimateScaleFactor = "deeptools.estimateScaleFactor:main"
multiBamSummary = "deeptools.multiBamSummary:main"
multiBigwigSummary = "deeptools.multiBigwigSummary:main"
plotCorrelation = "deeptools.plotCorrelation:main"
plotCoverage = "deeptools.plotCoverage:main"
plotEnrichment = "deeptools.plotEnrichment:main"
plotFingerprint = "deeptools.plotFingerprint:main"
plotHeatmap = "deeptools.plotHeatmap:main"
plotPCA = "deeptools.plotPCA:main"
plotProfile = "deeptools.plotProfile:main"