Skip to content

Commit f624775

Browse files
author
Eric Hamer
committed
version 2.3.0 now has a parameter optimzer
1 parent b4e3029 commit f624775

File tree

6 files changed

+855
-415
lines changed

6 files changed

+855
-415
lines changed

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 Quantiacs
3+
Copyright (c) 2016-2018 Quantiacs
44

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

1515
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1616
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE

quantiacsToolbox/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import pip
2-
moduleList = [i.key for i in pip.get_installed_distributions()]
1+
import pkg_resources
2+
3+
moduleList = [d for d in pkg_resources.working_set]
34

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

0 commit comments

Comments
 (0)