Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
TOPFARM
TopFarm2
Commits
8e6c706b
Commit
8e6c706b
authored
Jan 03, 2019
by
Mikkel Friis-Møller
Committed by
Riccardo Riva
Jan 03, 2019
Browse files
Pypi2
parent
ca5d398e
Pipeline
#6512
passed with stages
in 2 minutes and 18 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
README
0 → 100644
View file @
8e6c706b
|pipeline status| |coverage report|
Welcome to TOPFARM
------------------
This is the plant-level optimization tool that is being developed by DTU
Wind Energy.
Installation Guide, Examples, and Documentation
===============================================
Please refer to the `TOPFARM documentation`_.
.. _TOPFARM documentation: https://topfarm.pages.windenergy.dtu.dk/TopFarm2
.. |pipeline status| image:: https://gitlab.windenergy.dtu.dk/TOPFARM/TopFarm2/badges/master/pipeline.svg
:target: https://gitlab.windenergy.dtu.dk/TOPFARM/TopFarm2/commits/master
.. |coverage report| image:: https://gitlab.windenergy.dtu.dk/TOPFARM/TopFarm2/badges/master/coverage.svg
:target: https://gitlab.windenergy.dtu.dk/TOPFARM/TopFarm2/commits/master
setup.py
View file @
8e6c706b
...
...
@@ -4,17 +4,21 @@ Setup file for Topfarm2
"""
from
setuptools
import
setup
import
os
from
setuptools
import
setup
,
find_packages
def
read
(
fname
):
return
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
fname
)).
read
()
setup
(
name
=
'topfarm'
,
version
=
'2.0'
,
version
=
'2.0
.3
'
,
description
=
'Topfarm - Wind farm optimization using OpenMDAO'
,
long_description
=
read
(
'README'
),
url
=
'https://gitlab.windenergy.dtu.dk/TOPFARM/topfarm2'
,
author
=
'DTU Wind Energy'
,
author_email
=
'dave@dtu.dk'
,
license
=
'MIT'
,
packages
=
[
'topfarm'
],
packages
=
find_packages
(
exclude
=
[
"*.examples"
,
"*.examples.*"
,
"examples.*"
,
"examples"
]),
install_requires
=
[
'matplotlib'
,
# for plotting
'numpy'
,
# for numerical calculations
...
...
Pierre-Elouan Rethore
@pire
mentioned in issue
#77 (closed)
·
Jan 10, 2019
mentioned in issue
#77 (closed)
mentioned in issue #77
Toggle commit list
Pierre-Elouan Rethore
@pire
mentioned in issue
#78
·
Jan 10, 2019
mentioned in issue
#78
mentioned in issue #78
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment