forked from scverse/muon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (53 loc) · 1.18 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "muon"
author = "Danila Bredikhin"
author-email = "[email protected]"
description-file = "README.md"
home-page = "https://github.com/scverse/muon"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research"
]
requires-python = ">= 3.6"
requires = [
"numpy",
"pandas",
"matplotlib",
"seaborn",
"h5py",
"anndata",
"scanpy",
"sklearn",
"umap-learn",
"numba",
"loompy",
"protobuf",
"tqdm",
"mudata",
]
[tool.flit.metadata.requires-extra]
docs = [
"sphinx >= 4.0",
"sphinx-book-theme",
"readthedocs-sphinx-search",
"nbsphinx",
"sphinx_automodapi"
]
atac = [
"pybedtools",
"pysam"
]
[tool.flit.metadata.urls]
Documentation = "https://muon.readthedocs.io/en/latest/"
[tool.flit.sdist]
exclude = [".github", "docs/build"]
[tool.black]
line-length = 100
target-version = ['py37']