-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
44 lines (38 loc) · 1.26 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
37
38
39
40
41
42
43
44
# coding: utf8
"""
Setup script for otbenchmark
============================
This script allows to install otbenchmark within the Python environment.
Usage
-----
::
pip install .
"""
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="otbenchmark",
keywords=["OpenTURNS", "benchmark"],
version="0.2.1",
packages=find_packages(),
install_requires=["numpy<2", "matplotlib", "openturns>=1.23"],
description="Benchmark problems for OpenTURNS",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
],
license="LGPL",
url="https://github.com/openturns/otbenchmark",
include_package_data=True,
maintainer="Michaël Baudin",
maintainer_email="michael.baudin@edf.fr",
author="Michaël Baudin, Youssef Jebroun, Elias Fekhari and Vincent Chabridon",
author_email="michael.baudin@edf.fr",
)