-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (30 loc) · 930 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from gdc_fastq_splitter import VERSION
setup(
name = "gdc_fastq_splitter",
author = "Kyle Hernandez",
author_email = "[email protected]",
version = VERSION,
description = "CLI for splitting a fastq with multiple readgroups",
url = "https://github.com/kmhernan/gdc-fastq-splitter",
license = "Apache 2.0",
packages = [
"gdc_fastq_splitter",
"gdc_fastq_splitter.fastq",
],
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
entry_points= {
'console_scripts': [
'gdc-fastq-splitter = gdc_fastq_splitter.__main__:main'
]
}
)