-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
67 lines (48 loc) · 1.81 KB
/
setup.py
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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='imspire', # Required
version='1.2.0', # Required
description='ImSpiRE is a python script (python 3.8+) for spatial resolution enhancenment by solving the entropic regularized fused Gromov-Wasserstein transport (FGW) problem for in situ capturing (ISC) spatial transcriptome.', # Optional
long_description=long_description, # Optional
long_description_content_type='text/markdown', # Optional (see note above)
url='https://github.com/TongjiZhanglab/ImSpiRE', # Optional
author='Yuwei Hua', # Optional
author_email='[email protected]', # Optional
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
# Pick your license as you wish
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
],
package_dir={'': 'src'},
packages=[''],
scripts=['bin/ImSpiRE'],
python_requires='>=3.8',
install_requires=[
'pandas==1.4.1',
'numpy==1.23.4',
'matplotlib==3.1.3',
'scanpy==1.9.0',
'scipy==1.9.3',
'scikit-learn==1.1.3',
'numba==0.53.0',
'backgroundremover==0.1.9',
# 'cellprofiler==4.2.1',
'scikit-image==0.19.3',
'anndata==0.8.0',
'tifffile',
'POT',
'opencv-python'
],
)