forked from Clinical-Genomics/fusion-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (50 loc) · 1.59 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
import os
import sys
from setuptools import find_packages, setup
VERSION = '1.0'
PACKAGE_DATA = {
'fusion_report': [
'db/*.sql'
'templates/*/*',
'../docs/_src/_static/*',
'../LICENSE',
'../README.md',
'../requirements.txt'
]
}
with open('README.md') as f:
README = f.read()
with open('requirements.txt') as f:
INSTALL_REQUIREMENTS = f.read().splitlines()
setup(
name='fusion_report',
version=VERSION,
python_requires='>=3.6.*',
description='Tool for parsing outputs from fusion detection tools.',
long_description=README,
author='Martin Proks',
author_email='[email protected]',
url='https://github.com/matq007/fusion-report',
license='GPL_v3',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=INSTALL_REQUIREMENTS,
zip_safe=False,
scripts=['bin/fusion_report'],
classifiers=[
'Natural Language :: English',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'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',
'Topic :: Scientific/Engineering :: Visualization',
],
package_data=PACKAGE_DATA,
include_package_data=True
)