@@ -46,27 +46,27 @@ def read(*rnames):
4646# stores __version__ in the current namespace
4747exec (compile (open ("mathics/version.py" ).read (), "mathics/version.py" , "exec" ))
4848
49- # Get/set VERSION and long_description from files
5049long_description = read ("README.rst" ) + "\n "
5150
5251
5352is_PyPy = platform .python_implementation () == "PyPy"
5453
55- INSTALL_REQUIRES = []
54+ INSTALL_REQUIRES = ["Mathics-Scanner >= 1.2.1,<1.3.0" ]
55+
5656# stores __version__ in the current namespace
5757exec (compile (open ("mathics/version.py" ).read (), "mathics/version.py" , "exec" ))
5858
5959extras_require = []
60- for line in open ("requirements-extra .txt" ).read ().split ("\n " ):
60+ for line in open ("requirements-full .txt" ).read ().split ("\n " ):
6161 if line and not line .startswith ("#" ):
6262 requires = re .sub (r"([^#]+)(\s*#.*$)?" , r"\1" , line )
6363 extras_require .append (requires )
6464
6565EXTRAS_REQUIRE = {"full" : extras_require }
6666
67- DEPENDENCY_LINKS = [
68- "http://github.com/Mathics3/mathics-scanner/tarball/master#egg=Mathics_Scanner-1.0.0.dev"
69- ]
67+ DEPENDENCY_LINKS = []
68+ # "http://github.com/Mathics3/mathics-scanner/tarball/master#egg=Mathics_Scanner-1.0.0.dev"
69+ # ]
7070
7171try :
7272 if is_PyPy :
@@ -102,19 +102,15 @@ def read(*rnames):
102102
103103# General Requirements
104104INSTALL_REQUIRES += [
105- "Mathics_Scanner>=1.2.0 ,<1.3.0" ,
105+ "Mathics_Scanner>=1.2.1 ,<1.3.0" ,
106106 "sympy>=1.8, <= 1.9dev" ,
107107 "mpmath>=1.2.0" ,
108108 "numpy" ,
109109 "palettable" ,
110110 "pint" ,
111111 "python-dateutil" ,
112- # "psutil", # for $SystemMemory
113112 "llvmlite" ,
114113 "requests" ,
115- # lxml is an optional dependency for HTML parsing used in builtin/fileformats/html
116- # "scikit-image", optional
117- # "wordcloud", # Used in builtin/image.py by WordCloud()
118114]
119115
120116
@@ -123,8 +119,6 @@ def subdirs(root, file="*.*", depth=10):
123119 yield root + "*/" * k + file
124120
125121
126- mathjax_files = list (subdirs ("media/js/mathjax/" ))
127-
128122setup (
129123 name = "Mathics3" ,
130124 cmdclass = CMDCLASS ,
0 commit comments