-
Notifications
You must be signed in to change notification settings - Fork 34
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 #9 from FZJ-IEK3-VSA/develop
Develop
- Loading branch information
Showing
7 changed files
with
705 additions
and
132 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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
__pycache__/ | ||
trash/ | ||
example/.ipynb_checkpoints/ | ||
*.eggs/ | ||
|
||
# file types to ignore | ||
*.pyc | ||
|
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,4 @@ | ||
sklearn>=0.0 | ||
pandas>=0.18.1 | ||
numpy>=1.11.0 | ||
pyomo>=5.3 |
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,17 +1,16 @@ | ||
from distutils.core import setup | ||
import os, setuptools | ||
dir_path = os.path.dirname(os.path.realpath(__file__)) | ||
with open( os.path.join(dir_path,'requirements.txt') ) as f: | ||
required_packages = f.read().splitlines() | ||
|
||
setup( | ||
setuptools.setup( | ||
name='tsam', | ||
version='0.9.4', | ||
version='0.9.5', | ||
author='Leander Kotzur', | ||
url='', | ||
packages = ['tsam', | ||
'tsam.utils',], | ||
install_requires = [ | ||
"sklearn>=0.0", | ||
"pandas>=0.18.1", | ||
"numpy>=1.11.0", | ||
"pyomo>=5.3" | ||
] | ||
include_package_data=True, # includes all files in sdist that are tracked in git, additionall using the MANIFEST.in to exclude some of them | ||
packages = setuptools.find_packages(), | ||
py_modules = [], | ||
install_requires = required_packages, | ||
setup_requires = ['setuptools-git'] | ||
) | ||
|
Oops, something went wrong.