-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
34 lines (30 loc) · 873 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md') as f:
arcsv_readme = f.read()
with open('LICENSE') as f:
arcsv_license = f.read()
version = '0.0.0'
for line in open('arcsv/_version.py'):
if line.startswith('__version__'):
version = line.split('=')[1].strip().strip('"')
setup(
name='arcsv',
version=version,
description='Automated Reconstruction of Complex Structural Variants from WGS Data',
long_description=arcsv_readme,
author='Joey Arthur',
author_email='[email protected]',
license=arcsv_license,
# url='http://github.com/jgarthur/arcsv/',
packages=find_packages(exclude=('build', 'dist')),
install_requires=[
'pysam',
'numpy',
'scipy',
'scikit-learn',
'matplotlib',
'igraph',
'pyinter'
],
scripts=['bin/arcsv']
)