Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
Reformatted setup.py with black, mostly to ensure that black still works after a regex warning.
  • Loading branch information
akey7 committed Jun 28, 2021
1 parent 622b569 commit 69c65ff
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit 69c65ff

Please sign in to comment.