|
a |
|
b/setup.py |
|
|
1 |
#!/usr/bin/env python |
|
|
2 |
from setuptools import setup, find_packages |
|
|
3 |
import os |
|
|
4 |
|
|
|
5 |
scripts = ['bin/exseek'] |
|
|
6 |
|
|
|
7 |
#with open('requirements.txt') as fin: |
|
|
8 |
# requirements = [line.strip() for line in fin] |
|
|
9 |
requirements = [] |
|
|
10 |
|
|
|
11 |
setup( |
|
|
12 |
name='exseek-pipeline', |
|
|
13 |
version='1.0.0', |
|
|
14 |
scripts=scripts, |
|
|
15 |
packages=['exseek'], |
|
|
16 |
package_data={'exseek': ['config/*.yaml', 'scripts/*', 'singularity/*', 'templates/*', 'snakefiles/*', 'snakefiles/rules/*', 'snakefiles/scripts/*']}, |
|
|
17 |
include_package_data=True, |
|
|
18 |
install_requires=requirements, |
|
|
19 |
url='https://github.com/lulab/exseek', |
|
|
20 |
description='exSEEK - a pipeline for analysis of exRNA sequencing data', |
|
|
21 |
zip_safe=False, |
|
|
22 |
data_files=[('', ['LICENSE', 'requirements.txt'])] |
|
|
23 |
) |