-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
58 lines (52 loc) · 1.08 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "clodius"
version = "0.20.1"
description = "Tile generation for big data"
authors = [
{ name = "Peter Kerpedjiev", email = "[email protected]" },
]
dependencies = [
"Click>=7",
"cooler>0.9.0",
"dask",
"h5py",
"negspy",
"numpy",
"pandas>=1.0",
"pybbi>=0.2.0",
"pydantic",
"pyfaidx",
"pysam",
"requests",
"slugid",
"sortedcontainers",
"tqdm",
]
license = { text = "MIT" }
readme = "README.md"
urls = { homepage = "https://github.com/higlass/clodius" }
[project.scripts]
clodius = "clodius.cli.aggregate:cli"
tsv_to_mrmatrix = "clodius._tsv_to_mrmatrix:main"
[project.optional-dependencies]
dev = [
"autopep8",
"bumpversion",
"flake8",
"pytest",
"pytest-cov",
]
[tool.pytest.ini_options]
addopts = "--cov=clodius --tb=native"
testpaths = ["test"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"return NotImplemented",
"raise NotImplementedError",
]
[tool.hatch.envs.default]
features = ["dev"]