Unverified Commit 8dfbf9b6 authored by Vít Starý Novotný's avatar Vít Starý Novotný
Browse files

Add" notebooks" extra requirements to setup.py

parent 0a05d312
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ RUN apt-get -qy update \
COPY . /pv211-utils
WORKDIR /pv211-utils
RUN curl https://bootstrap.pypa.io/get-pip.py | python3.8 \
 && pip install jupyterhub jupyterlab . \
 && pip install .[notebooks] \
 && python3.8 -m script.download_datasets

# Create home directory
+12 −1
Original line number Diff line number Diff line
@@ -29,7 +29,18 @@ setup(
        "ijson",
        "ipython",
    ],
    package_data={"pv211_utils": ["data/*"]},
    extras_require=[
        "notebooks": [
            "gensim==3.6.0",
            "jupyterhub",
            "jupyterlab",
        ],
    ],
    package_data={
        "pv211_utils": [
            "data/*",
        ],
    },
)

# vim: set cin et ts=4 sw=4 ft=python :11