Skip to content

Commit

Permalink
Merge pull request #8 from NREL/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
nikhar-abbas authored Mar 4, 2020
2 parents 69545dc + e950eb4 commit 22fbab0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
11 changes: 4 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
from setuptools import find_packages, setup, Command

# Package meta-data.
NAME = 'ROSCO_toolbox'
NAME = 'rosco-toolbox'
DESCRIPTION = 'A toolbox for development of wind turbine controllers.'
URL = 'https://github.com/NREL/ROSCO_toolbox'
EMAIL = 'nikhar.abbas@nrel.gov'
AUTHOR = 'NREL National Wind Technology Center'
REQUIRES_PYTHON = '>=3.3.0'
VERSION = '1.0.0'
VERSION = '2.0.0'

# These packages are required for all of the code to be executed.
# - Maybe you can get away with older versions...
Expand All @@ -41,8 +41,6 @@
'pytest>=4',
'scipy>=1.1',
'pyYAML>=5.3'
# 'wisdem>=2.0' # This is NREL's distrubtion of WISDEM. CC-Blade and Aeroelastic SE are used as of January 2020
# https://github.com/wisdem/wisdem
]

# Read the docs, one day, so we'll throw it in here!
Expand All @@ -62,9 +60,8 @@
here = os.path.abspath(os.path.dirname(__file__))

# Import the README and use it as the long-description.
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
try:
with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
except FileNotFoundError:
long_description = DESCRIPTION
Expand Down Expand Up @@ -137,7 +134,7 @@ def run(self):
install_requires=REQUIRED,
extras_require=EXTRAS,
include_package_data=True,
license='Apache-2.0',
license='Apache License, Version 2.0',
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down

0 comments on commit 22fbab0

Please sign in to comment.