diff --git a/README.md b/README.md index effcdc9187d0553ab7bc557e412e79d29b0f7eb0..d58b1f5a44972c2442d5cb5af2aa8e6bc0f65b24 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 55392b66403d846860de488ef26cd74a977a9ffc..b9be78e107e1f157b4b7bd51886d515d311704f1 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', # ],