77from setuptools import setup , find_namespace_packages
88
99# Ensure user has the correct Python version
10- if sys .version_info < (3 , 7 ):
11- print ("Mathics support Python 3.7 and above; you have %d.%d" % sys .version_info [:2 ])
10+ if sys .version_info < (3 , 8 ):
11+ print ("Mathics support Python 3.8 and above; you have %d.%d" % sys .version_info [:2 ])
1212 sys .exit (- 1 )
1313
1414
@@ -28,11 +28,11 @@ def read(*rnames):
2828is_PyPy = platform .python_implementation () == "PyPy"
2929
3030setup (
31- name = "pymathics -graph" ,
31+ name = "Mathics3 -graph" ,
3232 version = __version__ , # noqa
3333 packages = find_namespace_packages (include = ["pymathics.*" ]),
3434 install_requires = [
35- "Mathics3>=7.0.0dev " ,
35+ "Mathics3>=7.0.0.dev0 " ,
3636 "networkx>=3.0.0" ,
3737 "pydot" ,
3838 "matplotlib" ,
@@ -50,10 +50,10 @@ def read(*rnames):
5050 "Intended Audience :: Science/Research" ,
5151 "License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
5252 "Programming Language :: Python" ,
53- "Programming Language :: Python :: 3.7" ,
5453 "Programming Language :: Python :: 3.8" ,
5554 "Programming Language :: Python :: 3.9" ,
5655 "Programming Language :: Python :: 3.10" ,
56+ "Programming Language :: Python :: 3.11" ,
5757 "Programming Language :: Python :: Implementation :: CPython" ,
5858 "Programming Language :: Python :: Implementation :: PyPy" ,
5959 "Topic :: Scientific/Engineering" ,
0 commit comments