-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (43 loc) · 1.04 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "mudatasets"
author = "Danila Bredikhin"
author-email = "[email protected]"
description-file = "README.md"
home-page = "https://github.com/PMBio/mudatasets"
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.7"
requires = [
"mudata",
"tqdm",
"requests",
"muon"
]
[tool.flit.metadata.requires-extra]
docs = [
"sphinx >= 4.0",
"sphinx-rtd-theme",
"readthedocs-sphinx-search",
"nbsphinx",
"sphinx_automodapi",
"insegel"
]
muon = [
"muon"
]
[tool.flit.metadata.urls]
Documentation = "https://mudatasets.readthedocs.io/en/latest/"
[tool.flit.sdist]
exclude = [".github", "docs/build"]
[tool.black]
line-length = 100
target-version = ['py37']