-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 757 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 757 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='HARP_Opt',
version='4.0.0',
description='Horizontal Axis Rotor Performance Optimization',
author='S. Andrew Ning',
author_email='andrew.ning@nrel.gov',
package_dir={'': 'src'},
py_modules=['harpopt'],
packages=['rotorse', 'commonse'], # TODO: these should come directly from GitHub once released
install_requires=['CCBlade>=1.1.1', 'akima>=1.0'],
license='Apache License, Version 2.0',
dependency_links=['https://github.com/WISDEM/CCBlade/tarball/master#egg=CCBlade-1.1.1',
'https://github.com/andrewning/akima/tarball/master#egg=akima-1.0.0'],
zip_safe=False
)