-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
39 lines (37 loc) · 1.29 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
# adobo's setup script.
# OF; Sept 2019
from setuptools import setup, find_packages, Extension
setup(
name='adobo',
version=open('adobo/VERSION').read().replace('\n',''),
description='An analysis framework for single cell gene expression data.',
author='Oscar Franzén',
author_email='p.oscar.franzen@gmail.com',
include_package_data=True,
packages=['adobo', 'adobo.glm', 'adobo.irlbpy'],
url='https://github.com/oscar-franzen/adobo',
license='LICENSE',
long_description=open('README.md').read(),
install_requires=[
'pandas >= 0.25.0',
'numpy >= 1.17.0',
'scikit-learn >= 0.21.3',
'leidenalg >= 0.7.0',
'python-igraph >= 0.7.1',
'scipy >= 1.3.0',
'umap-learn >= 0.3.9',
'statsmodels >= 0.10.1',
'matplotlib >= 3.1.1',
'seaborn >= 0.9.0',
'psutil >= 5.4.2',
'datatable >= 0.9.0',
'fa2', # https://github.com/bhargavchippada/forceatlas2
'networkx >= 2.3',
'patsy >= 0.5.1',
'mplcursors >= 0.3',
'python-louvain >= 0.13', # louvain (module is called community)
'tqdm >= 4.37.0' # progress bar
],
ext_modules=[Extension('pdf', sources = ['adobo/libs/pdf.c'],
extra_compile_args=['-fPIC','-lm'])]
)