-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (30 loc) · 989 Bytes
/
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
from setuptools import setup, find_packages
if __name__ == "__main__":
setup(
name="DMDO",
author="Ahmed H. Bayoumy",
author_email="[email protected]",
version='2404',
packages=find_packages(include=['DMDO', 'DMDO.*']),
description="Distributed Multidisciplinary Design Optimization (DMDO)",
install_requires=[
'pandas==2.2.2',
'NOBM==2404.1',
'numpy==1.23.2',
'OMADS==2404.1',
'pyyaml'
],
extras_require={
'interactive': ['matplotlib>=3.5.2', 'plotly>=5.14.1'],
},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Intended Audience :: Developers',
"Operating System :: OS Independent",
],
python_requires='>=3.8',
)