forked from VUmcCGP/wisecondor
-
Notifications
You must be signed in to change notification settings - Fork 41
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 #100 from CenterForMedicalGeneticsGhent/chore/pret…
…tier lint code with black
- Loading branch information
Showing
11 changed files
with
985 additions
and
757 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Copyright (C) 2016 VU University Medical Center Amsterdam | ||
Author: Roy Straver (github.com/rstraver) | ||
Mod: Lennart Raman (github.com/leraman) | ||
Mod: Lennart Raman (github.com/leraman) | ||
|
||
WISECONDOR is distributed under the following license: | ||
[Attribution-NonCommercial-ShareAlike CC BY-NC-SA]( https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode) | ||
[Attribution-NonCommercial-ShareAlike CC BY-NC-SA](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode) | ||
This license is governed by Dutch law and this license is subject to the exclusive jurisdiction of the courts of the Netherlands. |
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 |
---|---|---|
@@ -1,48 +1,55 @@ | ||
#! /usr/bin/env python | ||
from setuptools import setup, find_packages | ||
|
||
version = '1.2.4' | ||
dl_version = 'master' if 'dev' in version else '{}'.format(version) | ||
version = "1.2.4" | ||
dl_version = "master" if "dev" in version else "{}".format(version) | ||
|
||
setup( | ||
name='WisecondorX', | ||
name="WisecondorX", | ||
version=version, | ||
author='Matthias De Smet, Lennart Raman', | ||
author_email='[email protected]', | ||
author="Matthias De Smet, Lennart Raman", | ||
author_email="[email protected]", | ||
description="WisecondorX -- an evolved WISECONDOR", | ||
long_description=__doc__, | ||
keywords=['bioinformatics', 'biology', 'sequencing', 'NGS', 'next generation sequencing', | ||
'CNV', 'SWGS', 'Shallow Whole Genome Sequencing'], | ||
download_url='https://github.com/CenterForMedicalGeneticsGhent/WisecondorX/archive/v{}.tar.gz'.format( | ||
dl_version), | ||
license='Attribution-NonCommercial-ShareAlike CC BY-NC-SA', | ||
packages=find_packages('.'), | ||
python_requires='>=2.7', | ||
keywords=[ | ||
"bioinformatics", | ||
"biology", | ||
"sequencing", | ||
"NGS", | ||
"next generation sequencing", | ||
"CNV", | ||
"SWGS", | ||
"Shallow Whole Genome Sequencing", | ||
], | ||
download_url="https://github.com/CenterForMedicalGeneticsGhent/WisecondorX/archive/v{}.tar.gz".format( | ||
dl_version | ||
), | ||
license="Attribution-NonCommercial-ShareAlike CC BY-NC-SA", | ||
packages=find_packages("."), | ||
python_requires=">=2.7", | ||
include_package_data=True, | ||
zip_safe=False, | ||
install_requires=[ | ||
'futures;python_version<"3"', | ||
'scipy', | ||
'scikit-learn', | ||
'pysam', | ||
'numpy' | ||
"scipy", | ||
"scikit-learn", | ||
"pysam", | ||
"numpy", | ||
], | ||
entry_points={ | ||
'console_scripts': ['WisecondorX = wisecondorX.main:main'] | ||
}, | ||
entry_points={"console_scripts": ["WisecondorX = wisecondorX.main:main"]}, | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Environment :: Console', | ||
'Intended Audience :: Science/Research', | ||
'Natural Language :: English', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: POSIX', | ||
'Operating System :: Unix', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Scientific/Engineering :: Bio-Informatics' | ||
] | ||
"Development Status :: 3 - Alpha", | ||
"Environment :: Console", | ||
"Intended Audience :: Science/Research", | ||
"Natural Language :: English", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: POSIX", | ||
"Operating System :: Unix", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
], | ||
) |
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
Oops, something went wrong.