Skip to content

Commit

Permalink
version 2019
Browse files Browse the repository at this point in the history
  • Loading branch information
e-dub committed Jul 27, 2019
1 parent 7256f9d commit 7a0fbad
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
14 changes: 7 additions & 7 deletions DesOptPy/MainDesOpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Units: Unitless
Author: E. J. Wehrle
Contributors: S. Rudolph (<α0.5), F. Wachter (α0.5-1.2), M. Richter (α0.5)
Date: June 4, 2019
Date: July 27, 2019
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
Expand All @@ -16,11 +16,11 @@
-------------------------------------------------------------------------------
Change log
-------------------------------------------------------------------------------
2019
General clean-up
NumPy problems
PyGMO working again
Sensitivity analysis
2019 (July 27, 2019)
General clean-up
NumPy problems
PyGMO working again
Sensitivity analysis
1.3 (July 30, 2016)
Removed support for surrogate model based optimization
Expand Down Expand Up @@ -162,7 +162,7 @@
# -----------------------------------------------------------------------------
__title__ = "DESign OPTimization in PYthon"
__shorttitle__ = "DesOptPy"
__version__ = "2019pre"
__version__ = "2019"
__all__ = ['DesOpt']
__author__ = "E. J. Wehrle"
__copyright__ = "Copyright 2015, 2016, 2017, 2018, 2019 E. J. Wehrle"
Expand Down
3 changes: 0 additions & 3 deletions DesOptPy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from DesOptPy.MainDesOpt import *
13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
# -*- coding: utf-8 -*-

import os


def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths


if __name__ == '__main__':
from distutils.core import setup
from distutils.core import setup
extra_files = package_files('DesOptPy')
setup(name='DesOptPy',
version='1.3pre',
version='2019',
description='DESign OPTimization in PYthon',
author='E. J. Wehrle',
author_email='[email protected]',
copyright="Copyright 2015, 2016, 2017, E. J. Wehrle",
copyright="Copyright 2015, 2016, 2017, 2018, 2019 E. J. Wehrle",
package_data={'': extra_files},
license='GNU Lesser General Public License',
url='www.DesOptPy.org',
url='https://github.com/e-dub/DesOptPy',
packages=['DesOptPy'])

0 comments on commit 7a0fbad

Please sign in to comment.