Skip to content

Commit

Permalink
setup.py edit
Browse files Browse the repository at this point in the history
  • Loading branch information
victoria-cherkas committed May 20, 2022
1 parent 9684b62 commit c0d04cc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,18 @@

setup(
name="icon_data_processing", # Required
version="v0.1.6", # Required
version="v0.1.7", # Required
description="A package of modules for processing and plotting ICON data.", # Optional
long_description=long_description, # Optional
long_description_content_type="text/markdown", # Optional
url="https://github.com/C2SM/ICON-data-processing", # Optional
author="MeteoSwiss, C2SM", # Optional
author_email="[email protected], [email protected]", # Optional
package_dir={"": "ICON_data_processing"}, # Optional
packages=find_packages(), # Required
packages=find_packages(
where='ICON_data_processing',
include=['backend','core','plot','utils'],
), # Required
python_requires=">=3.7, <4",
install_requires=[], # Optional
)

0 comments on commit c0d04cc

Please sign in to comment.