forked from NLRWindSystems/CCBlade
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 732 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup
from numpy.distutils.core import setup, Extension
setup(
name='CCBlade',
version='1.1.1',
description='Blade element momentum aerodynamics for wind turbines',
author='S. Andrew Ning',
author_email='andrew.ning@nrel.gov',
package_dir={'': 'src'},
py_modules=['ccblade'],
install_requires=['airfoilprep.py>=0.1'], # , 'zope.interface'],
# test_suite='test.test_ccblade.py',
license='Apache License, Version 2.0',
ext_modules=[Extension('_bem', ['src/bem.f90'], extra_compile_args=['-O2'])],
dependency_links=['https://github.com/WISDEM/AirfoilPreppy/tarball/master#egg=airfoilprep.py-0.1'],
zip_safe=False
)