-
-
Notifications
You must be signed in to change notification settings - Fork 205
/
setup.py
213 lines (182 loc) · 6.36 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Python Setuptools for Mathics core
For the easiest installation:
pip install -e .
This will install the library in the default location. For instructions on
how to customize the install procedure read the output of:
python setup.py --help install
In addition, there are some other commands:
python setup.py clean -> will clean all trash (*.pyc and stuff)
To get a full list of avaiable commands, read the output of:
python setup.py --help-commands
"""
import re
import sys
import os.path as osp
import platform
from setuptools import setup, Extension
# Ensure user has the correct Python version
if sys.version_info < (3, 6):
print("Mathics does not support Python %d.%d" % sys.version_info[:2])
sys.exit(-1)
def get_srcdir():
filename = osp.normcase(osp.dirname(osp.abspath(__file__)))
return osp.realpath(filename)
def read(*rnames):
return open(osp.join(get_srcdir(), *rnames)).read()
# stores __version__ in the current namespace
exec(compile(open("mathics/version.py").read(), "mathics/version.py", "exec"))
long_description = read("README.rst") + "\n"
is_PyPy = platform.python_implementation() == "PyPy"
INSTALL_REQUIRES = ["Mathics-Scanner >= 1.2.1,<1.3.0"]
# stores __version__ in the current namespace
exec(compile(open("mathics/version.py").read(), "mathics/version.py", "exec"))
EXTRAS_REQUIRE = {}
for kind in ("dev", "full"):
extras_require = []
requirements_file = f"requirements-{kind}.txt"
for line in open(requirements_file).read().split("\n"):
if line and not line.startswith("#"):
requires = re.sub(r"([^#]+)(\s*#.*$)?", r"\1", line)
extras_require.append(requires)
EXTRAS_REQUIRE[kind] = extras_require
DEPENDENCY_LINKS = []
# "http://github.com/Mathics3/mathics-scanner/tarball/master#egg=Mathics_Scanner-1.0.0.dev"
# ]
try:
if is_PyPy:
raise ImportError
from Cython.Distutils import build_ext
except ImportError:
EXTENSIONS = []
CMDCLASS = {}
else:
EXTENSIONS_DICT = {
"core": ("expression", "numbers", "rules", "pattern"),
"builtin": ["arithmetic", "numeric", "patterns", "graphics"],
}
EXTENSIONS = [
Extension(
"mathics.%s.%s" % (parent, module), ["mathics/%s/%s.py" % (parent, module)]
)
for parent, modules in EXTENSIONS_DICT.items()
for module in modules
]
# EXTENSIONS_SUBDIR_DICT = {
# "builtin": [("numbers", "arithmetic"), ("numbers", "numeric"), ("drawing", "graphics")],
# }
# EXTENSIONS.append(
# Extension(
# "mathics.%s.%s.%s" % (parent, module[0], module[1]), ["mathics/%s/%s/%s.py" % (parent, module[0], module[1])]
# )
# for parent, modules in EXTENSIONS_SUBDIR_DICT.items()
# for module in modules
# )
CMDCLASS = {"build_ext": build_ext}
INSTALL_REQUIRES += ["cython>=0.15.1"]
# General Requirements
INSTALL_REQUIRES += [
"Mathics_Scanner>=1.2.1,<1.3.0",
"sympy>=1.8, <= 1.9dev",
"mpmath>=1.2.0",
"numpy",
"palettable",
"pint",
"python-dateutil",
"llvmlite",
"requests",
]
def subdirs(root, file="*.*", depth=10):
for k in range(depth):
yield root + "*/" * k + file
setup(
name="Mathics3",
cmdclass=CMDCLASS,
ext_modules=EXTENSIONS,
version=__version__,
packages=[
"mathics",
"mathics.algorithm",
"mathics.core",
"mathics.core.parser",
"mathics.builtin",
"mathics.builtin.arithfns",
"mathics.builtin.box",
"mathics.builtin.colors",
"mathics.builtin.compile",
"mathics.builtin.distance",
"mathics.builtin.drawing",
"mathics.builtin.list",
"mathics.builtin.fileformats",
"mathics.builtin.files_io",
"mathics.builtin.intfns",
"mathics.builtin.moments",
"mathics.builtin.numbers",
"mathics.builtin.numpy_utils",
"mathics.builtin.pymimesniffer",
"mathics.builtin.pympler",
"mathics.builtin.specialfns",
"mathics.builtin.string",
"mathics.doc",
"mathics.format",
],
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
dependency_links=DEPENDENCY_LINKS,
package_data={
"mathics": [
"data/*.csv",
"data/*.json",
"data/*.yml",
"data/*.yaml",
"data/*.pcl",
"data/ExampleData/*",
"doc/xml/data",
"doc/tex/data",
"autoload/*.m",
"autoload-cli/*.m",
"autoload/formats/*/Import.m",
"autoload/formats/*/Export.m",
"packages/*/*.m",
"packages/*/Kernel/init.m",
],
"mathics.doc": ["documentation/*.mdoc", "xml/data"],
"mathics.builtin.pymimesniffer": ["mimetypes.xml"],
"pymathics": ["doc/documentation/*.mdoc", "doc/xml/data"],
},
entry_points={
"console_scripts": [
"mathics = mathics.main:main",
],
},
long_description=long_description,
long_description_content_type="text/x-rst",
# don't pack Mathics in egg because of media files, etc.
zip_safe=False,
# metadata for upload to PyPI
maintainer="Mathics Group",
maintainer_email="[email protected]",
description="A general-purpose computer algebra system.",
license="GPL",
url="https://mathics.org/",
download_url="https://github.com/mathics/Mathics/releases",
keywords=["Mathematica", "Wolfram", "Interpreter", "Shell", "Math", "CAS"],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Interpreters",
],
# TODO: could also include long_description, download_url,
)