forked from DARcorporation/airfoil-optimizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.48 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
from setuptools import setup, find_packages
__version__ = re.findall(
r"""__version__ = ["']+([0-9\.]*)["']+""", open("af_opt/__init__.py").read()
)[0]
setup(
name="Airfoil Optimizer",
version=__version__,
description="Airfoil Optimization using OpenMDAO",
author="Daniel de Vries",
author_email="danieldevries6@gmail.com",
packages=find_packages(),
package_data={
"af_opt": ["*/tests/*.py", "*/*/tests/*.py", "components/tests/clark-y.dat"]
},
install_requires=[
"numpy>=1.17",
"openmdao<2.10,>=2.8",
"h5py<3,>=2.10.0",
"cst<2,>=1.0.1",
"differential_evolution<2,>=1.7.0",
"matplotlib<4,>=3",
],
extras_require={"test": ["parameterized"]},
url="https://github.com/daniel-de-vries/airfoil-optimizer",
download_url="https://github.com/daniel-de-vries/airfoil-optimizer/archive/v{0}.tar.gz".format(
__version__
),
keywords=["airfoil", "optimization"],
license="MIT License",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
],
)