forked from tuonglab/kttools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (37 loc) · 1.13 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
[tool.poetry]
name = "kttools"
version = "0.2.3"
description = "Kelvin's miscellaneous tools for python"
authors = ["Zewen Kelvin Tuong <[email protected]>"]
license = "MIT"
readme = "README.rst"
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
]
packages = [{ include = "tools" }]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
pandas = ">=1.2.4,<=2.2.0"
numpy = ">=1.21.6,<=1.24.4"
matplotlib = ">=3.5.2,<3.7.2"
scanpy = ">=1.7.1,<1.9.4"
anndata = ">=0.7.6,<0.9.2"
sphinx-autodoc-typehints = { optional = true, version = "<=1.23.0" }
sphinx_rtd_theme = { optional = true, version = "<=1.2.0" }
readthedocs-sphinx-ext = { optional = true, version = "<=2.2.0" }
recommonmark = { optional = true, version = "<=0.7.1" }
[tool.poetry.extras]
docs = [
"sphinx-autodoc-typehints",
"sphinx_rtd_theme",
"readthedocs-sphinx-ext",
"recommonmark",
]
[tool.poetry.group.dev.dependencies]
setuptools-scm = { extras = ["toml"], version = "^7.1.0" }
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"