From 4469d8d7f30db7a69393ae9e8fd7a628f133de64 Mon Sep 17 00:00:00 2001 From: "Mads M. Pedersen" <mmpe@dtu.dk> Date: Fri, 4 May 2018 11:38:27 +0200 Subject: [PATCH] pip install + requirements --- README.md | 15 ++++++++++++++- setup.py | 8 +++++++- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index effcdc91..d58b1f5a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,15 @@ [](https://gitlab.windenergy.dtu.dk/TOPFARM/TopFarm2/commits/master) -[](https://gitlab.windenergy.dtu.dk/TOPFARM/TopFarm2/commits/master) \ No newline at end of file +[](https://gitlab.windenergy.dtu.dk/TOPFARM/TopFarm2/commits/master) + + + +Install windows +--------------- + +conda create -n pyTopfarm python=3.6 +activate pyTopfarm +git clone +cd Topfarm2 +pip install -e . +cd tests +python -m pytest diff --git a/setup.py b/setup.py index 55392b66..b9be78e1 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ Setup file for Topfarm2 from setuptools import setup setup(name='topfarm', - version='1.0', + version='2.0', description='Topfarm - Wind farm optimization using OpenMDAO', url='https://gitlab.windenergy.dtu.dk/TOPFARM/topfarm2', author='MMPE, PIRE, MIKF, RINK', @@ -15,6 +15,12 @@ setup(name='topfarm', license='GNU GPL', packages=['topfarm' ], + install_requires=[ + 'openmdao', + 'pytest', + 'pytest-cov', + 'matplotlib' + ], # files= ['plotting.py', # 'topfarm.py', # ], -- GitLab