MilesCranmer commited on
Commit
811ca37
1 Parent(s): 043980c

Add missing pyproject.toml file

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -23,6 +23,7 @@ RUN pip3 install -r /pysr/requirements.txt
23
 
24
  # Install PySR:
25
  # We do a minimal copy so it doesn't need to rerun at every file change:
 
26
  ADD ./setup.py /pysr/setup.py
27
  ADD ./pysr/ /pysr/pysr/
28
  RUN pip3 install .
 
23
 
24
  # Install PySR:
25
  # We do a minimal copy so it doesn't need to rerun at every file change:
26
+ ADD ./pyproject.toml /pysr/pyproject.toml
27
  ADD ./setup.py /pysr/setup.py
28
  ADD ./pysr/ /pysr/pysr/
29
  RUN pip3 install .