-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 937 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = [
"setuptools>=64.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "gstripe"
version = "1.0"
authors = [
{ name = "Michał Denkiewicz", email = "[email protected]" },
]
description = "Graph-based stripe caller using chromain interaction data."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE.txt"}
keywords = ["stripes"]
classifiers = [
"Private :: Do Not Upload",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
dependencies = [
"numpy >= 2.0.0",
"pandas >= 2.2.2",
"scipy >= 1.13.1",
"igraph >= 0.11.5",
"matplotlib >= 3.9.0",
"setuptools>=70.1.0",
"seaborn >= 0.13.2"
]
[project.optional-dependencies]
test = [
"pytest"
]
stats = [
"hic-straw >= 1.3.1"
]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = [
"src"
]