Skip to content

Commit

Permalink
version 2.3.0 now has a parameter optimzer
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Hamer committed Aug 14, 2018
1 parent b4e3029 commit f624775
Show file tree
Hide file tree
Showing 6 changed files with 855 additions and 415 deletions.
4 changes: 2 additions & 2 deletions LICENSE
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016 Quantiacs
Copyright (c) 2016-2018 Quantiacs

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@ copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
Expand Down
5 changes: 3 additions & 2 deletions quantiacsToolbox/__init__.py
@@ -1,5 +1,6 @@
import pip
moduleList = [i.key for i in pip.get_installed_distributions()]
import pkg_resources

moduleList = [d for d in pkg_resources.working_set]

if 'quantiacstoolbox' in moduleList:
from .quantiacsToolbox import runts, loadData, plotts, stats, submit, computeFees, updateCheck

0 comments on commit f624775

Please sign in to comment.