-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
49 lines (44 loc) · 1.29 KB
/
setup.cfg
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
[bumpversion]
current_version = 1.0.2
commit = True
tag = False
[metadata]
name = concordex
version = 1.0.2
url = https://github.com/pachterlab/concordex
description = Identification of spatial homogeneous regions with concordex
long_description = file: README.md
long_description_content_type = text/markdown
author = Kayla Jackson, A. Sina Booeshaghi, Angel Galvez-Merchan, Alexandra Kim
maintainer = Kayla Jackson
maintainer_email = kaylajac@caltech.edu
kewyords = SingleCell, Clustering, Spatial, Transcriptomics
license = MIT
classifiers =
"Environment :: Console"
"Intended Audience :: Science/Research"
"License :: OSI Approved :: MIT License"
"Operating System :: OS Independent"
"Programming Language :: Python :: 3.6"
"Programming Language :: Python :: 3.7"
"Programming Language :: Python :: 3.8"
"Programming Language :: Python :: 3.9"
"Programming Language :: Python :: 3.10"
"Topic :: Scientific/Engineering :: Bio-Informatics"
"Topic :: Utilities"
[options]
zip_safe = False
python_requires = >=3.9
packages = find:
install_requires =
anndata>=0.8
numpy>=1.23
pandas>=1.5
scikit-learn>=0.24
[bumpversion:file:concordex/__init__.py]
[bumpversion:file:README.md]
[flake8]
exclude = .git,.github,__pycache__,build,dist
statistics = True
max-line-length = 88
extend-ignore = E203,E501