Skip to content

Commit

Permalink
Update for release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhar-abbas committed Mar 4, 2020
1 parent be8b903 commit 6671e4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
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 6671e4e

Please sign in to comment.