-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 1.07 KB
/
setup.py
File metadata and controls
27 lines (25 loc) · 1.07 KB
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'Single-cell RNA-seq multitask clustering toolbox',
'url': 'https://github.com/nicococo/scRNA',
'author': 'Nico Goernitz, Bettina Mieth, Marina Vidovic, Alex Gutteridge',
'author_email': 'nico.goernitz@tu-berlin.de',
'version': '2019.08',
'install_requires': ['nose', 'scikit-learn','numpy', 'scipy', 'matplotlib', 'pandas'],
'packages': ['scRNA'],
'package_dir' : {'scRNA': 'scRNA'},
# 'package_data': {'scRNA': ['gene_names.txt']},
'scripts': ['bin/scRNA-source.sh', 'bin/scRNA-target.sh', 'bin/scRNA-generate-data.sh'],
'name': 'scRNA',
'classifiers': ['Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3']
}
setup(**config)