-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
64 lines (58 loc) · 1.27 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 = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "muon"
author = "Danila Bredikhin"
author-email = "danila.bredikhin@embl.de"
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.10"
requires = [
"numpy",
"pandas",
"matplotlib",
"seaborn",
"h5py",
"anndata",
"scanpy",
"scikit-learn",
"umap-learn",
"numba",
"protobuf",
"tqdm",
"mudata",
]
[tool.flit.metadata.requires-extra]
docs = [
"sphinx >= 4.0",
"pydata-sphinx-theme==0.8.1",
"sphinx-book-theme==0.3.3",
"readthedocs-sphinx-search",
"nbsphinx",
"sphinx_automodapi"
]
atac = [
"pybedtools",
"pysam"
]
test = [
"pytest",
"flake8",
"mofapy2",
]
[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']