-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
30 lines (28 loc) · 893 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "HiCMatrix"
version = "17.2"
authors = [
{ name = "Lucille Lopez-Delisle, Joachim Wolff, Leily Rabbani, Vivek Bhardwaj, Fidel Ramirez", email = "[email protected]" },
]
description = "Helper package which implements HiCMatrix class for HiCExplorer, pyGenomeTracks and scHiCExplorer."
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
dependencies = [
"numpy >= 1.20",
"scipy >= 1.2",
"tables >= 3.5",
"pandas >= 0.25",
"cooler >= 0.8.9",
"intervaltree >= 3.0",
"importlib_metadata; python_version<'3.8'"
]
[project.urls]
Homepage = "https://github.com/deeptools/HiCMatrix"
Issues = "https://github.com/deeptools/HiCMatrix/issues"