-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
89 lines (83 loc) · 2.08 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "DeSide"
version = "1.3.2"
description = "A unified DEep-learning and SIngle-cell based DEconvolution method for solid tumors"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
authors = [
{ name = "OnlyBelter", email = "[email protected]" },
]
keywords = [
"DeSide",
"RNA-seq",
"deconvolution",
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
dependencies = [
"tensorflow==2.11.1",
"scikit-learn==0.24.2", # 0.24.0
"anndata>=0.8.0",
"scanpy==1.8.0",
"pandas==1.5.3",
"numpy>=1.22",
"scipy",
"umap-learn==0.5.1", # the version needs to be fixed for reproducibility
"matplotlib<3.7",
"seaborn==0.12.0",
"bbknn==1.5.1",
"SciencePlots",
"tables==3.6.1",
"build",
"sphinx>=6.0",
"myst-parser>=0.13.6",
"fsspec",
"h5py",
# "sphinx_book_theme",
"jinja2<3.1",
"numba<0.57",
# "sphinx_rtd_theme"
]
#dynamic = ["version"]
[project.urls]
#Documentation = "https://deside.readthedocs.io/"
Homepage = "https://github.com/OnlyBelter/DeSide"
Source = "https://github.com/OnlyBelter/DeSide"
Tracker = "https://github.com/OnlyBelter/DeSide/issues"
# https://realpython.com/pypi-publish-python-package/#version-your-package
[tool.bumpver]
current_version = "1.3.2"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
]
"setup.py" = [
"{version}",
"{pep440_version}",
]
"README.rst" = [
"{version}",
"{pep440_version}",
]
"README.md" = [
"{version}",
"{pep440_version}",
]