File size: 1,682 Bytes
2a26d3b |
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 |
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name="latex2sympy2",
version="1.9.0",
description='Convert latex to sympy with ANTLR and support Matrix, Linear Algebra and CAS functions.',
long_description_content_type='text/markdown',
long_description=open(path.join(here, "README.md"), encoding='utf-8').read(),
# The project's main homepage.
url='https://github.com/ZubinGou/latex2sympy',
# Author details
author='ZubinGou',
author_email='[email protected]',
# Choose your license
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Compilers',
'Topic :: Text Processing :: Markup :: LaTeX',
'Topic :: Text Processing :: Markup :: Markdown',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
packages=find_packages(exclude=('tests')),
py_modules=['asciimath_printer', 'latex2sympy2'],
install_requires=[
'sympy>=1.4',
'antlr4-python3-runtime==4.11.1'
],
)
|