-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (21 loc) · 887 Bytes
/
setup.py
File metadata and controls
28 lines (21 loc) · 887 Bytes
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
import sys
from setuptools import find_packages
from setuptools import setup
def setup_package():
install_requires = ['pymc3', 'torch', 'theano', 'pygpu', 'numpy', 'pandas', 'scanpy', 'plotnine']
metadata = dict(
name='cell2location_numpyro',
version='0.04',
description='cell2location: High-throughput spatial mapping of cell types',
url='https://github.com/BayraktarLab/cell2location',
author='Vitalii Kleshchevnikov, Artem Shmatko, Emma Dann, Artem Lomakin, Alexander Aivazidis',
author_email='vitalii.kleshchevnikov@sanger.ac.uk',
license='Apache License, Version 2.0',
packages=find_packages(),
install_requires=install_requires
)
setup(**metadata)
if __name__ == '__main__':
if sys.version_info < (2, 7):
sys.exit('Sorry, Python < 2.7 is not supported')
setup_package()