-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (21 loc) · 812 Bytes
/
setup.py
File metadata and controls
27 lines (21 loc) · 812 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
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='countcorrect',
version='0.01',
description='countcorrect: Background correction for Nanostring-wta data',
url='https://github.com/AlexanderAivazidis/CountCorrect',
author='Alexander Aivazidis',
author_email='alexander.aivazidis@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()