-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 1.05 KB
/
setup.py
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
"""
Author: Paul Saves <[email protected]>
Remi Lafage <[email protected]>
Jasper Bussemaker <[email protected]>
This package is distributed under New BSD license.
"""
from setuptools import setup
# Import __version__ without importing the module in setup
exec(open("./smt_design_space_ext/version.py").read())
setup(
name="smt_design_space_ext",
version=__version__, # noqa
author="Paul Saves et al.",
author_email="[email protected]",
keywords=["SMT, DesignSpace, Graph"],
license="BSD-3",
description="SMT design space extension for hierarchical variables handling",
install_requires=[
"numpy",
"smt>=2.8",
"ConfigSpace==0.6.1",
"adsg-core==1.1.1",
],
maintainer="Paul Saves",
maintainer_email="[email protected]",
packages=[
"smt_design_space_ext",
],
python_requires=">=3.9",
url="https://github.com/SMTorg/smt-design-space", # use the URL to the github repo
download_url="https://github.com/SMTorg/smt-design-space/releases",
)