forked from maxplanck-ie/snakepipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (24 loc) · 792 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (24 loc) · 792 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from glob import glob
import os.path
# Set __version__
exec(open('snakePipes/__init__.py').read())
scripts = ['bin/snakePipes']
for d in glob('snakePipes/workflows/*'):
scripts.append(os.path.join(d, os.path.split(d)[1]))
requires = open("requirements.txt").read().strip().split("\n")
setup(
name='snakePipes',
version=__version__, # noqa: F821
scripts=scripts,
packages=find_packages(),
include_package_data=True,
python_requires='>=3.7',
install_requires=requires,
url='https://github.com/maxplanck-ie/snakepipes',
license='MIT',
description='Snakemake workflows and wrappers for NGS data processing from the MPI-IE',
zip_safe=False,
data_files=[("", ["LICENSE"])]
)