-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 909 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 909 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
from distutils.core import setup
VERSION = "0.2"
DESCRIPTION = """\
FASTQCParser is a tool for automating the processing of basic FastQC results in Python.
Given the contents of picard_report.txt, it will parse the results into an object that can
then be used in code.
"""
setup(
name="picard_parser",
version=VERSION,
description="Parses Picard result files into Python",
long_description=DESCRIPTION,
url="https://github.com/StamLab/picard-parser",
packages=["picard_parser"],
license="Python",
classifiers=[
"License :: OSI Approved :: Python Software Foundation License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
)