-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from IEAWindTask37/release-1.1.0
Release 1.1.0
- Loading branch information
Showing
3 changed files
with
102 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,23 +4,23 @@ | |
|
||
# Top-level setup | ||
setup( | ||
name = 'windio2cad', | ||
version = '0.0.1', | ||
description = 'windio2cad', | ||
long_description = '''windio2cad takes windio ontology YAML files and translates them into .stl files.''', | ||
url = 'https://github.com/WISDEM/WISDEM', | ||
author = 'NREL WISDEM Team', | ||
author_email = '[email protected]', | ||
install_requires = [ | ||
'pyyaml', | ||
'scipy', | ||
'matplotlib', | ||
'numpy', | ||
'ruamel_yaml', | ||
'solidpython', | ||
name="windio2cad", | ||
version="0.0.1", | ||
description="windio2cad", | ||
long_description="""windio2cad takes windio ontology YAML files and translates them into .stl files.""", | ||
url="https://github.com/WISDEM/WISDEM", | ||
author="NREL WISDEM Team", | ||
author_email="[email protected]", | ||
install_requires=[ | ||
"pyyaml", | ||
"scipy", | ||
"matplotlib", | ||
"numpy", | ||
"ruamel.yaml", | ||
"solidpython", | ||
], | ||
python_requires = '>=3.8', | ||
packages = find_packages(exclude=['docs', 'tests', 'ext']), | ||
license = 'Apache License, Version 2.0', | ||
zip_safe = False | ||
python_requires=">=3.8", | ||
packages=find_packages(exclude=["docs", "tests", "ext"]), | ||
license="Apache License, Version 2.0", | ||
zip_safe=False, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters