-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
64 lines (59 loc) · 2.85 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
"""
Setup file
Install Loads Kernel with core dependencies via:
- pip install -e <local_repo_path>
To use the graphical tools and other features, optional libraries definded as extras are necessary:
- pip install -e <repo_path>[extra]
Especially with mpi or the graphical libraries, pip frequently fails. In that case, try to install the packages using a
package manager such as conda.
"""
from setuptools import setup, find_packages
def my_setup():
setup(name='LoadsKernel',
version='2024.06',
description="""The Loads Kernel Software allows for the calculation of quasi-steady and dynamic maneuver loads,
unsteady gust loads in the time and frequency domain as well as dynamic landing loads based on a generic landing
gear module.""",
long_description=open('README.md', encoding='utf8').read(),
long_description_content_type='text/markdown',
url='https://github.com/DLR-AE/LoadsKernel',
author='Arne Voß',
author_email='[email protected]',
license='BSD 3-Clause License',
packages=find_packages(),
entry_points={'console_scripts': ['loads-kernel=loadskernel.program_flow:command_line_interface',
'model-viewer=modelviewer.view:command_line_interface',
'loads-compare=loadscompare.compare:command_line_interface']},
include_package_data=True,
package_data={'loadskernel': ['graphics/*.*'],
'loadscompare': ['graphics/*.*'], },
python_requires='>=3.10',
install_requires=['PanelAero',
'matplotlib',
'numpy',
'scipy',
'psutil',
'h5py',
'tables',
'pyyaml',
'pandas',
],
extras_require={'extras': ['mpi4py',
'mayavi',
'traits',
'traitsui',
'pyface',
'jupyter',
'pyiges', # only available with pip, not with conda
],
'difficult': ['pyfmi', # frequent version conflicts
],
'test': ['pytest',
'pytest-cov',
'jupyter-book==0.15.1', # version 1.0.0 fails, wait for updates
'flake8',
'pylint',
]},
)
if __name__ == '__main__':
my_setup()