forked from scverse/scanpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (63 loc) · 1.3 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
[build-system]
requires = ['setuptools', 'setuptools_scm', 'wheel']
build-backend = 'setuptools.build_meta'
[tool.black]
line-length = 88
target-version = ['py36']
skip-string-normalization = true
exclude = '''
/build/.*
|/scanpy/(
get
|__init__
|cli
|logging
|_utils
|_settings
|neighbors/__init__
|api/(__init__|pp|pl|datasets)
|external/(exporting|tl/_palantir)
|preprocessing/(
_qc
|_combat
|_simple
|_recipes
|_normalization
|_highly_variable_genes
|_deprecated/highly_variable_genes
)
|tools/(
_dpt
|_sim
|_paga
|_umap
|_utils
|_leiden
|_louvain
|_tsne_fix
|_top_genes
|_score_genes
|_utils_clustering
|_rank_genes_groups
)
|plotting/(
__init__
|palettes
|_preprocessing
|_tools/(__init__|paga)
)
|tests/(
test_get
|test_pca
|test_combat
|test_neighbors
|test_readwrite
|test_clustering
|test_preprocessing
|test_rank_genes_groups
|test_marker_gene_overlap
|test_highly_variable_genes
|test_rank_genes_groups_logreg
|notebooks/(test_paga_paul15_subsampled|test_pbmc3k)
)
).py'''