-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.01 KB
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", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "modisco"
version = "2.6.0"
description = "Transcription Factor MOtif Discovery from Importance SCOres"
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
authors = [{ name = "Jacob Schreiber", email = "jmschreiber91@gmail.com" }]
dependencies = [
"click",
"numpy>=1.21.5",
"scipy>=1.6.2",
"numba>=0.53.1",
"scikit-learn>=1.0.2",
"leidenalg>=0.8.10",
"igraph>=0.9.11",
"tqdm>=4.38.0",
"pandas>=1.4.3",
"logomaker>=0.8",
"h5py>=3.7.0",
"hdf5plugin",
"memelite",
"jinja2",
"joblib",
"numba-progress",
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
[project.urls]
Homepage = "https://github.com/kundajelab/tfmodisco"
Repository = "https://github.com/kundajelab/tfmodisco"
[project.scripts]
modisco = "modiscolite.cli:cli"
[tool.setuptools.packages.find]
include = ["modiscolite"]
[tool.setuptools.package-data]
modiscolite = ["templates/*"]