-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added CHANGES file. Added --version option. Tweaks to setup.py.
- Loading branch information
victor73
committed
Mar 4, 2019
1 parent
8f7a92d
commit c201098
Showing
4 changed files
with
141 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
portal_client 1.4.2 | ||
|
||
* Corrections to setup.py. | ||
* Addition of --version option. | ||
|
||
- Victor <[email protected]> Sun, 03 Mar 2019 18:00:00 -0400 | ||
|
||
portal_client 1.4.1 | ||
|
||
* Additional clarification about the virtualenv creation. | ||
* Separate installation document and new readme. | ||
* Checking for ascp being in the path when FASP endpoint is used. | ||
|
||
- Victor <[email protected]> Fri, 01 Mar 2019 12:28:00 -0400 | ||
|
||
portal_client 1.4.0 | ||
|
||
* Fixes FTP downloads for NCBI SRA FTP urls. | ||
* Adds new feature, --disable-validation, to turn off/disable MD5 checksum | ||
validation to boost performance for large files/transfers (or when MD5 | ||
information is incorrect or unavailable). | ||
|
||
- Victor <[email protected]> Fri, 01 Mar 2019 12:26:00 -0400 | ||
|
||
portal_client 1.3.0 | ||
|
||
* Fixes problem with destination path using /, instead of os.path.join(). | ||
|
||
- Victor <[email protected]> Thu, 28 Feb 2019 15:00:00 -0400 | ||
|
||
portal_client 1.2.0 | ||
|
||
* Major refactoring in several classes. | ||
* Replacement to the ihmpdcc/hmp_client project. | ||
|
||
- Victor <[email protected]> Sun, 10 Feb 2019 10:06:00 -0400 | ||
|
||
portal_client 1.2 | ||
|
||
* Updated documentation. | ||
* New FASP (Aspera) functionality. | ||
|
||
- jmatsumura <[email protected]> Wed, 14 Jun 2017 14:33:00 -0400 | ||
|
||
portal_client 1.1 | ||
|
||
* Adding in a basic, but very convenient feature for creating a directory if | ||
it does not already exist. | ||
|
||
- jmatsumura <[email protected]> Tue, 13 Jun 2017 16:57:00 -0400 | ||
|
||
portal_client 1.0 | ||
|
||
* Initial release. | ||
|
||
- jmatsumura <[email protected]> Wed, 07 Jun 2017 16:17:00 -0400 |
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
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ def read(fname): | |
name='portal-client', | ||
description='Download client tool for IGS Portal servers.', | ||
long_description=read('DESC'), | ||
version='1.4.1', | ||
version='1.4.2', | ||
py_modules=['portal_client'], | ||
author='Victor F', | ||
author_email='[email protected]', | ||
|
@@ -31,7 +31,7 @@ def read(fname): | |
"Intended Audience :: Science/Research", | ||
"Natural Language :: English", | ||
"Operating System :: POSIX", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3.6", | ||
"Topic :: Utilities", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics" | ||
|