-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (71 loc) · 1.55 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
[build-system]
build-backend = "flit_core.buildapi"
requires = [
"flit_core >=3.4,<4",
"importlib_metadata>=0.7; python_version < '3.8'",
]
[project]
name = "chame"
description = "Chromatin accessibility module"
authors = [
{name = "Danila Bredikhin"},
{name = "Max Frank"},
]
maintainers = [
{name = "Danila Bredikhin", email = "[email protected]"},
]
urls.Documentation = "https://gtca.github.io/chame"
urls.Source = "https://github.com/gtca/chame"
urls.Home-page = "https://github.com/gtca/chame"
requires-python = ">=3.8"
license = {file = "LICENSE"}
readme = "README.md"
dynamic = ["version"]
dependencies = [
"anndata",
"mudata",
"scanpy",
"pybedtools",
"pysam",
"bioframe",
]
[project.optional-dependencies]
dev = [
# dev version generation
]
doc = [
"sphinx==4.2",
"myst-parser",
"sphinx-book-theme",
"readthedocs-sphinx-search",
"nbsphinx",
"sphinx-automodapi",
"sphinxcontrib-bibtex",
"sphinx-autodoc-typehints",
"sphinx-markdown-tables",
]
test = [
"pytest",
"pytest-cov",
]
[tool.coverage.run]
source = ["chame"]
omit = [
"**/test_*.py",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
xfail_strict = true
addopts = [
#'-Werror', # if 3rd party libs raise DeprecationWarnings, just use filterwarnings below
'--import-mode=importlib', # allow using test files with same name
]
filterwarnings = [
#'ignore:.*U.*mode is deprecated:DeprecationWarning',
]
[tool.isort]
multi_line_output = 3
profile = "black"
skip = []
[tool.jupytext]
formats = "ipynb,md"