-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
121 lines (101 loc) · 2.61 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Copyright (C) 2024 Roberto Rossini <roberros@uio.no>
#
# SPDX-License-Identifier: MIT
[build-system]
requires = [
"hatchling",
"hatch-vcs",
]
build-backend = "hatchling.build"
[project]
name = "stripepy-hic"
description = "StripePy recognizes architectural stripes in 3C and Hi-C contact maps using geometric reasoning"
dynamic = ["version"]
authors = [
{name="Andrea Raffo", email="andrea.raffo@ibv.uio.no"},
{name="Bendik Berg", email="bendber@ifi.uio.no"},
{name="Roberto Rossini", email="roberros@uio.no"},
]
maintainers = [
{name="Andrea Raffo", email="andrea.raffo@ibv.uio.no"},
{name="Roberto Rossini", email="roberros@uio.no"},
]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
keywords = [
"hi-c",
"hic",
"stripe",
"stripes",
"architectural stripe",
"contact map",
"cooler",
"stripe recognition",
]
requires-python = ">=3.9"
dependencies = [
"h5py >3, <4",
"hictkpy[scipy] >=1, <2",
"numpy >=2, <3",
"pandas >=2.0, <3",
"scipy >=1.10, <2",
"structlog >=24, <25"
]
[project.optional-dependencies]
all = [
"stripepy-hic",
"alive-progress >=3.2, <4",
"colorama >=0.4, <0.5",
"matplotlib >=3.8, <4",
"rich >=13.9, <14",
]
test = [
"stripepy-hic[all]",
"pytest",
"pytest-cov",
]
dev = [
"stripepy-hic[all,test]",
"black[jupyter]",
"build",
"isort",
"pre-commit",
]
[project.scripts]
stripepy = "stripepy:main"
[project.urls]
Homepage = "https://github.com/paulsengroup/StripePy"
Issues = "https://github.com/paulsengroup/StripePy/issues"
Repository = "https://github.com/paulsengroup/StripePy.git"
Source = "https://github.com/paulsengroup/StripePy"
[tool.pytest.ini_options]
minversion = "8.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
xfail_strict = true
markers = ["end2end", "unit"]
python_files = [
"test/unit/test*.py",
"test/integration/test*.py",
]
testpaths = [
"test/"
]
[tool.hatch.version]
source = "vcs"
fallback-version = "unknown"
[tool.hatch.build.targets.wheel]
packages = ["src/stripepy"]
[[tool.hatch.envs.test.matrix]]
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]