Skip to content

Commit

Permalink
Extra
Browse files Browse the repository at this point in the history
  • Loading branch information
b8raoult committed Mar 14, 2021
1 parent 8aa2fd9 commit 28192fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion climetlab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

# import logging

__version__ = "0.3.2"
__version__ = "0.3.3"


# if ipython_active:
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ def read(fname):
"entrypoints",
]

extra_requires = {"interactive": ["skinnywms", "folium"]}
extra_require = {"interactive": ["skinnywms", "folium"]}


full = []
for k, v in extra_requires.items():
for k, v in extra_require.items():
full += v
full += install_requires

extra_requires["full"] = full
extra_require["full"] = full


setuptools.setup(
Expand All @@ -96,7 +96,7 @@ def read(fname):
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=install_requires,
extra_requires=extra_requires,
extra_require=extra_require,
zip_safe=True,
classifiers=[
"Development Status :: 3 - Alpha",
Expand Down

0 comments on commit 28192fd

Please sign in to comment.