forked from mdolab/OpenAeroStruct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 779 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
from numpy.distutils.core import setup, Extension
import os
from subprocess import call
setup(name='openaerostruct',
version='2.0.0',
description='OpenAeroStruct',
author='John Jasa',
author_email='[email protected]',
license='BSD-3',
packages=[
'openaerostruct',
'openaerostruct/geometry',
'openaerostruct/structures',
'openaerostruct/aerodynamics',
'openaerostruct/functionals',
'openaerostruct/integration',
'openaerostruct/fortran',
],
# TODO: fix this with the correct requires
install_requires=[],
zip_safe=False,
# ext_modules=ext,
entry_points="""
[console_scripts]
plot_wing=openaerostruct.utils.plot_wing:disp_plot
"""
)