File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM python:3.7 -buster
1+ FROM python:3.8 -buster
22
33ENV MATHICS_HOME=/usr/src/app
44ENV ENTRYPOINT_COMMAND="docker run -it {MATHICS_IMAGE}"
@@ -10,12 +10,13 @@ RUN chmod +x /entrypoint.sh
1010
1111COPY requirements.txt ./
1212RUN apt-get update
13- RUN apt-get install -qq liblapack-dev llvm-dev gfortran
13+ RUN apt-get install -qq liblapack-dev llvm-dev gfortran maria
1414RUN pip install --no-cache-dir -r requirements.txt
1515COPY requirements-mathicsscript.txt ./
1616RUN pip install --no-cache-dir -r requirements-mathicsscript.txt
1717
1818RUN pip install pymathics-natlang
19+ RUN pip install mathicsscript
1920RUN python -m nltk.downloader wordnet omw
2021RUN python -m spacy download en
2122
Original file line number Diff line number Diff line change 1- mathics
1+ click
22colorama
3+ columnize
4+ networkx
35pygments
4- mathicsscript
6+ term-background >= 1.0.1
Original file line number Diff line number Diff line change 1- sympy >= 1.6 , < 1.7
1+ sympy >= 1.6 , <= 1.8dev
22django >= 3.1.2 , < 3.2
33mpmath >= 1.1.0
44numpy
Original file line number Diff line number Diff line change @@ -236,6 +236,10 @@ def run(self):
236236 "mathicsserver = mathics.server:main" ,
237237 ],
238238 },
239+ scripts = [
240+ "script/dmathicsserver" ,
241+ "script/dmathicsscript" ,
242+ ],
239243 long_description = long_description ,
240244 long_description_content_type = "text/x-rst" ,
241245 # don't pack Mathics in egg because of media files, etc.
You can’t perform that action at this time.
0 commit comments