-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
24 lines (22 loc) · 853 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
"""AeroPy: An easy to use aerodynamic tool."""
from setuptools import setup, find_packages
setup(name='aeropy',
version='0.0',
description='An easy to use aerodynamic tool.',
url='NA',
author='leal26',
author_email='[email protected]',
license='MIT',
packages=['aeropy', 'aeropy.CST_2D', 'aeropy.CST_3D',
'aeropy.morphing', 'aeropy.geometry',
'aeropy.filehandling', 'aeropy.structural'],
zip_safe=False,
package_data={
# If any package contains *.exe and avian files, include them:
'': ['*.exe', 'avian'],
# And include any *.exe files found in the 'CST' package, too:
'CST': ['*.exe', 'avian'],
# And include any *.exe files found in the 'geometry' package, too:
'geometry': ['*.exe'],
}
)