forked from OpenMDAO-Plugins/ipoptdriver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (51 loc) · 2.77 KB
/
setup.py
File metadata and controls
58 lines (51 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#
# This file is autogenerated during plugin_quickstart and overwritten during
# plugin_makedist. DO NOT CHANGE IT if you plan to use plugin_makedist to update
# the distribution.
#
from setuptools import setup, find_packages
kwargs = {'author': 'Herb Schilling',
'author_email': 'hschilling@nasa.gov',
'classifiers': ['Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering'],
'description': 'Openmdao driver wrapper for the Ipopt optimization code',
'download_url': '',
'entry_points': '[openmdao.driver]\nipoptdriver.ipoptdriver.IPOPTdriver=ipoptdriver.ipoptdriver:IPOPTdriver',
'include_package_data': True,
'install_requires': ['openmdao.main'],
'keywords': ['openmdao'],
'license': 'Apache License, Version 2.0',
'maintainer': 'Herb Schilling',
'maintainer_email': 'hschilling@nasa.gov',
'name': 'ipoptdriver',
'package_data': {'ipoptdriver': ['sphinx_build/html/usage.html',
'sphinx_build/html/genindex.html',
'sphinx_build/html/search.html',
'sphinx_build/html/srcdocs.html',
'sphinx_build/html/index.html',
'sphinx_build/html/objects.inv',
'sphinx_build/html/searchindex.js',
'sphinx_build/html/.buildinfo',
'sphinx_build/html/pkgdocs.html',
'sphinx_build/html/_sources/pkgdocs.txt',
'sphinx_build/html/_sources/srcdocs.txt',
'sphinx_build/html/_sources/index.txt',
'sphinx_build/html/_sources/usage.txt',
'sphinx_build/html/_static/underscore.js',
'sphinx_build/html/_static/pygments.css',
'sphinx_build/html/_static/basic.css',
'sphinx_build/html/_static/file.png',
'sphinx_build/html/_static/sidebar.js',
'sphinx_build/html/_static/jquery.js',
'sphinx_build/html/_static/default.css',
'sphinx_build/html/_static/minus.png',
'sphinx_build/html/_static/doctools.js',
'sphinx_build/html/_static/searchtools.js',
'sphinx_build/html/_static/plus.png',
'test/test_ipoptdriver.py']},
'package_dir': {'': 'src'},
'packages': ['ipoptdriver'],
'url': 'https://github.com/OpenMDAO-Plugins/ipoptdriver',
'version': '0.10',
'zip_safe': False}
setup(**kwargs)