-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.46 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
[build-system]
requires = ["cython",
"numpy>=1.10",
"setuptools >= 43.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["inspectro"]
[tool.black]
line-length = 127
target-version = ['py39', 'py310']
[project.scripts]
pairtools = "inspectro.utils:utils"
[project]
name = "inspectro"
version = "0.0.1"
license = {file = "LICENSE"}
description = "Spectral decomposition for characterizing long-range interaction profiles in Hi-C maps"
maintainers = [
{name = "Open2C", email = "[email protected]"},
]
requires-python = ">=3.9"
dependencies = ["cython",
"numpy>=1.10",
"h5py",
"bioframe>=0.3.3",
"cooltools>=0.5.2",
"cooler",
"pandas",
"scipy",
"pybbi",
"tqdm",
"scikit-learn",
"seaborn",
"matplotlib>=3.4.0",
"datashader",
"ipympl",
"ipdb",
"jupyterlab",
"loky",
"pyarrow",
"pysam",
"snakemake"]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[project.urls]
homepage = "https://github.com/open2c/inspectro"
source = "https://github.com/open2c/inspectro"