forked from qiime2/q2-demux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (51 loc) · 2.28 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# ----------------------------------------------------------------------------
# Copyright (c) 2016-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------
from setuptools import setup, find_packages
import versioneer
setup(
name="q2-demux",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
author="Greg Caporaso",
author_email="[email protected]",
url="https://qiime2.org",
license="BSD-3-Clause",
description="Maps sequence barcodes to samples.",
entry_points={
"qiime2.plugins":
["q2-demux=q2_demux.plugin_setup:plugin"]
},
package_data={
'q2_demux.tests': ['data/bad/*',
'data/emp_multiplexed/*',
'data/emp_multiplexed_single_end/*',
'data/error_correction_details/*',
'data/single_sample_multiple_files/*',
'data/subsample_single_end/*',
'data/subsample_paired_end/*',
'data/filter_samples_single_end/*',
'data/filter_samples_single_end/dir_fmt/*',
'data/filter_samples_paired_end/*',
'data/filter_samples_paired_end/dir_fmt/*',
'data/summarize_empty/*',
'data/summarize_empty/empty_single_end/*',
'data/summarize_empty/empty_forward_in_paired/*',
'data/summarize_empty/empty_reverse_in_paired/*',
'data/summarize_empty/empty_paired_end/*',
'data/reverse_only/*',
'data/tabulate_read_counts_single_end_1/*',
'data/tabulate_read_counts_single_end_2/*',
'data/tabulate_read_counts_paired_end_1/*',
],
'q2_demux': ['_summarize/assets/*.html',
'_summarize/assets/dist/*',
'citations.bib'],
},
zip_safe=False,
)