-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1.06 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from scripts.gcat_runner import __version__
setup(
name = 'gcat_runner',
version = __version__,
description = 'Python tools for running gcat workflow for cancer genome and transcriptome sequencing analysis',
keywords = 'cloud bioinformatics',
author = 'Kenichi Chiba, Ai Okada and Yuichi Shiraishi',
author_email = '[email protected]',
url = 'https://github.com/ncc-gap/GCATRunner.git',
license = 'GPLv3',
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Operating System :: Unix',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
package_dir = {'': 'scripts'},
packages = find_packages("scripts"),
package_data = {'gcat_runner': ['*/data/*']},
scripts = ['gcat_runner'],
include_package_data = True,
zip_safe = False,
install_requires = [
'pyyaml', 'drmaa',
],
test_suite = 'tests'
)