-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (37 loc) · 1.68 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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='mosna',
version='0.1.0',
description='multi-omics spatial network analysis library',
long_description=long_description,
long_description_content_type='text/markdown',
url = "https://github.com/AlexCoul/mosna",
author='Alexis Coullomb',
author_email='[email protected]',
license='GNU GPLv3',
classifiers=['Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU GPLv3',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent'],
packages=find_packages(exclude=['build', 'docs', 'templates', 'data']),
include_package_data=True,
install_requires=['matplotlib', 'numpy', 'seaborn',
'pandas','scipy', 'statsmodels',
'scikit-image', 'scikit-learn', 'ipykernel',
'pyarrow', 'tqdm', 'napari', 'colorcet',
'composition_stats', 'tysserand', 'scikit-survival',
'igraph', 'leidenalg', 'openpyxl', 'odfpy',
'fastcluster', 'lifelines', 'hdbscan', 'umap-learn',
'dask', 'xgboost', 'gudhi', 'torch_geometric',
'scanorama', 'pycave',
# to fix:
#'torch_sparse',
# 'scanit @ git+https://github.com/zcang/SCAN-IT.git',
],
keywords = 'spatial networks cells transcriptomics'
)