-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.07 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "mudata"
author = "Danila Bredikhin"
author-email = "danila.bredikhin@embl.de"
description-file = "README.md"
home-page = "https://github.com/scverse/mudata"
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",
"h5py",
"anndata >= 0.10.8",
]
[tool.flit.metadata.requires-extra]
docs = [
"sphinx",
"sphinx-book-theme",
"pydata-sphinx-theme",
"readthedocs-sphinx-search",
"nbsphinx",
"sphinx_automodapi",
"recommonmark"
]
test = [
"zarr"
]
[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']