-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (52 loc) · 1.37 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
"""
"""
import setuptools
setuptools.setup(
name='copulacci',
version='v0.0.1',
python_requires='>=3.9',
packages=['copulacci'],
package_dir={'': 'src'},
author='Hirak Sarkar',
author_email='[email protected]',
description='A count-based model for delineating cell-cell interactions in spatial transcriptomics data',
url='https://github.com/raphael-group/copulacci/',
install_requires=[
'matplotlib',
'seaborn',
'numpy',
'pandas',
'seaborn',
'scikit-learn',
'tqdm',
'scipy',
'networkx',
'jupyterlab',
'joblib',
'scanpy',
'anndata',
'omnipath',
'squidpy',
'spatialdm',
'adjustText'
],
include_package_data = True,
package_data = {
'' : ['*.txt']
},
license='BSD',
platforms=["Linux", "MacOs"],
classifiers=[
'Programming Language :: Python :: 3.8',
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
keywords=[
'spatial transcriptomics',
'neural network',
'tissue layer'],
entry_points={'console_scripts': 'copulacci=copulacci.__main__:main'}
)