File tree Expand file tree Collapse file tree 5 files changed +11
-4
lines changed Expand file tree Collapse file tree 5 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ RUN pip install --upgrade pip
2828COPY MANIFEST.in /compose/backend/
2929COPY pyproject.toml /compose/backend/
3030
31- RUN pip install --no-cache-dir .[dev]
31+ RUN pip install --no-cache-dir -e .[dev]
3232
3333# Now copy the rest of the app
3434COPY . /compose/backend/
3535
36- RUN pip install --no-cache-dir .
36+ RUN pip install --no-cache-dir -e .
Original file line number Diff line number Diff line change @@ -51,3 +51,6 @@ dev = [
5151
5252[tool .setuptools .packages .find ]
5353include = [" neurosynth_compose*" ]
54+
55+ [tool .setuptools .package-data ]
56+ neurosynth_compose = [" openapi/**/*" ]
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ RUN npm install -g yarn
1616RUN pip install --upgrade pip
1717
1818COPY pyproject.toml /store/backend/
19- RUN pip install --no-cache-dir .[dev]
19+ RUN pip install --no-cache-dir -e .[dev]
2020
2121COPY . /store/backend/
2222
23- RUN pip install --no-cache-dir .
23+ RUN pip install --no-cache-dir -e .
Original file line number Diff line number Diff line change 1+ recursive-include neurostore/openapi *
Original file line number Diff line number Diff line change @@ -57,3 +57,6 @@ dev = [
5757 " vcrpy~=7.0" ,
5858 " pytest-recording~=0.13.1" ,
5959]
60+
61+ [tool .setuptools .package-data ]
62+ neurostore = [" openapi/**/*" ]
You can’t perform that action at this time.
0 commit comments