-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 1.17 KB
/
setup.py
File metadata and controls
34 lines (29 loc) · 1.17 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
"""
Install Panel Aero with core dependencies via:
- pip install -e <local_repo_path>
"""
from setuptools import setup, find_packages
def my_setup():
setup(name='PanelAero',
version='2025.08',
description='An Implementation of the Vortex Lattice and the Doublet Lattice Method.',
long_description=open('README.md', encoding='utf8').read(),
long_description_content_type='text/markdown',
url='https://github.com/DLR-AE/PanelAero',
author='Arne Voß',
author_email='arne.voss@dlr.de',
license='BSD 3-Clause License',
packages=find_packages(),
python_requires='>=3.7',
install_requires=['numpy'],
extras_require={'test': ['pytest',
'pytest-cov',
],
'tutorials': ['jupyter',
'jupyter-book==1.0.4', # Jupyter book 2.xx is not yet generating static html pages
'matplotlib',
]
},
)
if __name__ == '__main__':
my_setup()