-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 765 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 765 Bytes
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
'''
This is the setup file for installing hiopbbpy
Authors: Tucker Hartland <hartland1@llnl.gov>
Nai-Yuan Chiang <chiang7@llnl.gov>
'''
import sys
import numpy as np
from setuptools import setup, find_packages
metadata = dict(
name="hiopbbpy",
version="0.0.2",
description="HiOp black box optimization (hiopbbpy)",
author="Tucker hartland et al.",
author_email="hartland1@llnl.gov",
license="BSD-3",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=["smt", "cyipopt"],
python_requires=">=3.9",
zip_safe=False,
url="https://github.com/LLNL/hiop",
download_url="https://github.com/LLNL/hiop",
)
setup(**metadata)