-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Python Setuptools for installation of a suite of Mathics3 PyPI packages."""
import sys
python_version = sys.version_info[:2]
if python_version < (3, 7):
raise Exception(
f"This package requires Python 3.7 or greater. You have {python_version}."
)
from setuptools import setup
setup(
name="Mathics-benchmark",
version="1.0.0",
author="The Mathics Team",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
entry_points={
"console_scripts": [
"mathics-bench = mathics_benchmark.bench:main",
"mathics-bench-compare = mathics_benchmark.compare:main",
]
},
packages=["mathics_benchmark", ],
install_requires=[
"click",
"psutil",
"GitPython",
"PyYAML",
'matplotlib>="3.4.0',
],
license="GPLv3",
url="https://github.com/Mathics3/mathics-benchmark/",
)