This repository has been archived by the owner on Aug 6, 2024. It is now read-only.
forked from vladsavelyev/NGS_Utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·62 lines (57 loc) · 1.81 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
import sys
from os.path import join
from ngs_utils import setup_utils
import ngs_utils
package_name = ngs_utils.__name__
version = setup_utils.init(package_name, package_name, __file__)
from setuptools import setup
setup(
name=package_name,
version=version,
author='Vlad Saveliev',
author_email='vlad.saveliev@astrazeneca.com',
description='Utils for NGS pipelines by Vlad Saveliev',
keywords='bioinformatics',
url='https://github.com/vladsaveliev/NGS_Utils',
license='GPLv3',
packages=[
package_name,
'tab_utils'
],
package_data={
package_name: setup_utils.find_package_files('', package_name, skip_exts=['.sass', '.coffee'])
},
include_package_data=True,
zip_safe=False,
install_requires=setup_utils.get_reqs(),
setup_requires=['numpy'],
scripts=[path for path in
[join('scripts', fn) for fn in [
'standardize_bed.py',
'split_bed.py',
'qstat.py',
'sort_bed.py',
'bed_file_from_gene_list.py',
'html_to_base64.py',
'group_and_merge_by_gene.py',
'tabutils',
'tsv',
'cols',
'hg19_addchr.py',
]]],
classifiers=[
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: JavaScript',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)