forked from airinnova/pytornado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·136 lines (119 loc) · 3.8 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, Extension, find_packages
import os
import platform
def make_path_os_indep(unix_path):
"""
Return a file path suitable for current OS
Args:
:unix_path: Unix-style file path (string)
Returns:
:os_path: OS-independent file path (string)
"""
os_path = os.path.join(*unix_path.split('/'))
return os_path
# Numpy must be installed
try:
import numpy as np
except ImportError:
msg = f"""
{'='*80}
Please install 'numpy' first. Try:
pip install numpy
{'='*80}
"""
raise ImportError(msg)
from src.lib.pytornado.__version__ import __version__
# See also: https://github.com/kennethreitz/setup.py/blob/master/setup.py
NAME = 'pytornado'
VERSION = __version__
AUTHOR = 'Aaron Dettmann'
EMAIL = '[email protected]'
DESCRIPTION = 'A vortex-lattice implementation (VLM) implementation'
URL = 'https://github.com/airinnova/pytornado'
REQUIRES_PYTHON = '>=3.6.0'
REQUIRED = [
'airfoils>=0.2.0',
'aeroframe>=0.0.4',
'ambiance',
'numpy',
'scipy',
'matplotlib>=3.0.2',
'commonlibs>=0.5.0',
'schemadict>=0.0.8',
]
HERE = os.path.dirname(__file__)
README = os.path.join(HERE, 'README.rst')
PACKAGE_DIR = make_path_os_indep('src/lib/')
LICENSE = 'Apache License 2.0'
# ===== Main executable file =====
SCRIPTS = [make_path_os_indep('src/bin/_pytornado_exe.py')]
# Windows
if platform.system().lower() == 'windows':
# Use BAT file as wrapper, see file header for reason
SCRIPTS.append(make_path_os_indep('src/bin/pytornado.bat'))
# Linux and MacOs
else:
SCRIPTS.append(make_path_os_indep('src/bin/pytornado'))
# Note: When downloading https://github.com/airinnova/pytornado/archive/master.zip from Windows,
# the README file is not included for some reason; but we do not need to throw error
if os.path.isfile(README):
with open(README, "r") as fp:
long_description = fp.read()
else:
print("WARNING: Could not find README'")
long_description = ''
# Extension modules
# See
# * https://docs.python.org/3.7/extending/building.html
# * https://docs.python.org/3/distutils/setupscript.html
module1_path_rel = make_path_os_indep('src/lib/pytornado/aero/')
module1 = Extension(
'pytornado.aero.c_vlm',
sources=[
os.path.join(module1_path_rel, 'c_vlm.cpp'),
os.path.join(module1_path_rel, 'c_boundary.cpp'),
os.path.join(module1_path_rel, 'c_downwash.cpp'),
os.path.join(module1_path_rel, 'c_lattice.cpp'),
os.path.join(module1_path_rel, 'c_results.cpp'),
],
include_dirs=[
module1_path_rel,
make_path_os_indep('/usr/include/python3.6'),
# Numpy header
# '/usr/lib/python3/dist-packages/numpy/core/include/'
os.path.join(np.get_include(), 'numpy'),
np.get_include(),
]
)
setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
description=DESCRIPTION,
long_description=long_description,
url=URL,
ext_modules=[module1],
include_package_data=True,
scripts=SCRIPTS,
package_dir={'': PACKAGE_DIR},
license=LICENSE,
# packages=[NAME],
packages=find_packages(where=PACKAGE_DIR),
python_requires=REQUIRES_PYTHON,
install_requires=REQUIRED,
# See: https://pypi.org/classifiers/
classifiers=[
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.6',
"License :: OSI Approved :: Apache Software License",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
)