11#!/usr/bin/env python
22# -*- coding: utf-8 -*-
33
4- import sys
5- import platform
64import os .path as osp
7- from setuptools import setup , find_namespace_packages
5+ import platform
6+ import sys
7+
8+ from setuptools import find_namespace_packages , setup
89
910# Ensure user has the correct Python version
1011if sys .version_info < (3 , 8 ):
@@ -32,7 +33,7 @@ def read(*rnames):
3233 version = __version__ , # noqa
3334 packages = find_namespace_packages (include = ["pymathics.*" ]),
3435 install_requires = [
35- "Mathics3>=7 .0.0.dev0 " ,
36+ "Mathics3>=8 .0.0" ,
3637 "networkx>=3.0.0" ,
3738 "pydot" ,
3839 "matplotlib" ,
@@ -54,12 +55,11 @@ def read(*rnames):
5455 "Programming Language :: Python :: 3.9" ,
5556 "Programming Language :: Python :: 3.10" ,
5657 "Programming Language :: Python :: 3.11" ,
58+ "Programming Language :: Python :: 3.12" ,
5759 "Programming Language :: Python :: Implementation :: CPython" ,
5860 "Programming Language :: Python :: Implementation :: PyPy" ,
5961 "Topic :: Scientific/Engineering" ,
60- "Topic :: Scientific/Engineering :: Bio-Informatics" ,
6162 "Topic :: Scientific/Engineering :: Mathematics" ,
62- "Topic :: Scientific/Engineering :: Physics" ,
6363 "Topic :: Software Development :: Interpreters" ,
6464 ],
6565 # TODO: could also include long_description, download_url,
0 commit comments