-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (51 loc) · 1.73 KB
/
setup.py
File metadata and controls
52 lines (51 loc) · 1.73 KB
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
from setuptools import setup, find_packages
setup(
name='spac',
version="0.9.2",
description=(
'SPatial Analysis for single-Cell analysis (SPAC)'
'is a Scalable Python package for single-cell spatial protein data '
'analysis from multiplexed whole-slide tissue images.'
),
long_description=(
'SPAC is a scalable, Python-based package for analyzing single-cell '
'spatial protein data from multiplexed whole-slide tissue images. It '
'integrates with other single-cell toolkits through the anndata '
'framework and provides various functional and visualization modules. '
'SPAC enables user-friendly web interfaces and offers insights into '
'cell interactions in diverse environments, benefiting studies of '
'cancer microenvironments, stem cell niches, and drug responses.'
'Latest release on Jan 6th, 2025'
),
author='Fang Liu, Rui He, and George Zaki',
url='https://github.com/FNLCR-DMAP/SCSAWorkflow',
packages=find_packages(where='src'),
package_dir={'': 'src'},
package_data={
'spac': ['templates/*.py'],
},
install_requires=[
'pandas',
'anndata',
'numpy',
'scikit-learn',
'squidpy',
'matplotlib',
'seaborn',
'scanpy',
'phenograph',
'zarr',
'numba',
'Pillow',
'datashader',
'plotly'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD 3-Clause License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)