-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·94 lines (83 loc) · 1.91 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
[build-system]
requires = ["setuptools>=41", "wheel", "setuptools_scm[toml]>=6.2", "numpy", "Cython"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[project]
name = "chromatinhd"
authors = [
{name = "Wouter Saelens", email = "[email protected]"},
]
description = "High-definition modeling of (single-cell) chromatin + transcriptomics data"
requires-python = ">=3.8"
keywords = ["bioinformatics", "chromatin accessibility", "transcriptomics"]
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"torch", # --extra-index-url https://download.pytorch.org/whl/cu113
"scanpy",
"matplotlib",
"numpy",
"seaborn",
"diskcache",
"appdirs",
"xarray",
"requests",
"zarr",
"pathlibfs",
]
dynamic = ["version", "readme"]
license = {text = "MIT"}
[project.urls]
"Homepage" = "https://github.com/DeplanckeLab/ChromatinHD"
"Bug Tracker" = "https://github.com/DeplanckeLab/ChromatinHD/issues"
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[project.optional-dependencies]
sam = [
"pysam",
]
dev = [
"pre-commit",
"pytest",
"coverage",
"polyptich",
"black",
"pylint",
"jupytext",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-jupyter",
"mike",
"cairosvg", # for mkdocs social
"pillow", # for mkdocs social
"mkdocs-awesome-pages-plugin",
"setuptools_scm",
"Cython",
]
test = [
"pytest",
"ruff",
]
full = ["chromatinhd[sam]"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
filterwarnings = [
"ignore",
]
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = [
"too-many-arguments",
"not-callable",
"redefined-builtin",
"redefined-outer-name",
]
[tool.ruff]
line-length = 90
include = ['src/**/*.py']
exclude = ['scripts/*']
[tool.jupytext]
formats = "ipynb,py:percent"