forked from grasple/latex2sympy
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (31 loc) · 1021 Bytes
/
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
from setuptools import setup
setup(
version="1.12.0",
name="latex2sympy",
packages=[
'latex2sympy',
'latex2sympy.lib',
'latex2sympy.lib.linux',
'latex2sympy.lib.macOS',
'latex2sympy.units',
'latex2sympy.units.unit_aliases',
'latex2sympy.utils',
],
package_dir={
'latex2sympy': 'src/latex2sympy',
'latex2sympy.lib.linux': 'src/latex2sympy/lib/linux',
'latex2sympy.lib.macOS': 'src/latex2sympy/lib/macOS',
'latex2sympy.units': 'src/latex2sympy/units',
'latex2sympy.units.unit_aliases': 'src/latex2sympy/units/unit_aliases',
'latex2sympy.utils': 'src/latex2sympy/utils',
},
package_data={
'latex2sympy': [],
'latex2sympy.lib.linux': ['latex2antlrJson.so'],
'latex2sympy.lib.macOS': ['latex2antlrJson.so'],
'latex2sympy.units': [],
'latex2sympy.units.unit_aliases': [],
'latex2sympy.utils': [],
},
install_requires=['sympy==1.13.3'],
)