-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.05 KB
/
setup.py
File metadata and controls
36 lines (32 loc) · 1.05 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
"""
Author: Paul Saves <paul.saves@onera.fr>
Remi Lafage <remi.lafage@onera.fr>
Jasper Bussemaker <jasper.bussemaker@dlr.de>
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="paul.saves@onera.fr",
keywords=["SMT, DesignSpace, Graph"],
license="BSD-3",
description="SMT design space extension for hierarchical variables handling",
install_requires=[
"numpy",
"smt~=2.10",
"ConfigSpace~=1.2.0",
"adsg-core~=1.4.0",
],
maintainer="Paul Saves",
maintainer_email="paul.saves@onera.fr",
packages=[
"smt_design_space_ext",
],
python_requires=">=3.10",
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",
)