-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (26 loc) · 994 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
from setuptools import find_packages
from varalign import __version__, __license__
def gather_dependencies():
with open('requirements.txt', 'r') as f_in:
return [l for l in f_in.read().rsplit(os.linesep)
if l and not l.startswith("#")]
DEPENDENCIES = gather_dependencies()
setup(
name='VarAlign',
version=__version__,
packages=find_packages(exclude=['tests', 'tests.*']),
# data_files=[('config', ['varalign/config.txt'])],
package_data={'varalign': ['config.txt']},
include_package_data=True,
scripts=['bin/filter_swiss', 'bin/varalign', 'bin/index_pfam'],
install_requires=DEPENDENCIES,
url='https://github.com/stuartmac/VarAlign/',
license=__license__,
author='Stuart MacGowan',
author_email='[email protected]',
description='This package is used to map and aggregate variants in multiple sequence alignments.'
)