-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (25 loc) · 966 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
# ----------------------------------------------------------------------------
# Copyright (c) 2016--, AGCT development team.
#
# Distributed under the terms of the GPLv3 License.
#
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------
from setuptools import find_packages, setup
setup(
name='nau-orchard',
version='0.0.3',
description='A pipeline management generation tool',
author='AGTC Genetic Tax. Consultants',
author_email='blazer@nau.edu',
url='https://github.com/acgt-tax-consultants/orchard',
download_url=('https://github.com/acgt-tax-consultants/orchard/archive/0.1'
'.tar.gz'),
packages=find_packages(),
package_data={'orchard': ['_data/*']},
install_requires=['luigi', 'jinja2', 'click', 'pyyaml'],
entry_points='''
[console_scripts]
orchard=orchard.cli:orchard
'''
)