forked from RBniCS/RBniCS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (45 loc) · 1.63 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
45
46
47
# Copyright (C) 2015-2023 by the RBniCS authors
#
# This file is part of RBniCS.
#
# SPDX-License-Identifier: LGPL-3.0-or-later
from setuptools import find_packages, setup
setup(name="RBniCS",
description="Reduced order modelling in FEniCS",
long_description="Reduced order modelling in FEniCS",
author="Francesco Ballarin (and contributors)",
author_email="francesco.ballarin@unicatt.it",
version="0.2.0",
license="GNU Library or Lesser General Public License (LGPL)",
url="https://www.rbnicsproject.org",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(),
include_package_data=True,
install_requires=[
"cvxopt>=1.3.1",
"mpi4py",
"multipledispatch>=0.5.0",
"sympy>=1.0"
],
extras_require={
"tests": [
"pytest",
"pytest-benchmark"
]
},
zip_safe=False
)