-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from aanil/master
Switch CouchDB with cloudant-python-sdk and get version from git release
- Loading branch information
Showing
2 changed files
with
36 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,29 +4,32 @@ | |
specific to the National Genomics Infrastructure at the Science for Life | ||
Laboratory in Stockholm, Sweden. | ||
Author: Phil Ewels | ||
For more information about NGI, see http://www.scilifelab.se/platforms/ngi/ | ||
For more information about MultiQC, see http://multiqc.info | ||
""" | ||
|
||
from setuptools import setup, find_packages | ||
import subprocess | ||
|
||
|
||
version = '0.8.0' | ||
def get_version(): | ||
return subprocess.check_output(["git", "describe", "--tags"]).strip().decode("utf-8") | ||
|
||
setup( | ||
name = 'multiqc_ngi', | ||
version = version, | ||
author = 'Phil Ewels', | ||
author_email = '[email protected]', | ||
version = get_version(), | ||
description = "MultiQC plugin for the National Genomics Infrastructure @ SciLifeLab Sweden", | ||
long_description = __doc__, | ||
keywords = 'bioinformatics', | ||
url = 'https://github.com/ewels/MultiQC_NGI', | ||
download_url = 'https://github.com/ewels/MultiQC_NGI/releases', | ||
url = 'https://github.com/NationalGenomicsInfrastructure/MultiQC_NGI', | ||
download_url = 'https://github.com/NationalGenomicsInfrastructure/MultiQC_NGI/releases', | ||
license = 'MIT', | ||
packages = find_packages(), | ||
include_package_data = True, | ||
install_requires = [ | ||
'couchdb', | ||
'ibmcloudant>=0.9.1' | ||
'simplejson', | ||
'pyyaml', | ||
'requests', | ||
|