forked from roniemartinez/latex2mathml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (34 loc) · 2.01 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
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
readme = ''
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, 'README.rst')
if os.path.exists(readme_path):
with open(readme_path, 'rb') as stream:
readme = stream.read().decode('utf8')
setup(
long_description=readme,
name='latex2mathml',
version='3.73.1',
description='Pure Python library for LaTeX to MathML conversion',
python_requires='==3.*,>=3.7.0',
project_urls={"repository": "https://github.com/roniemartinez/latex2mathml"},
author='Ronie Martinez',
author_email='[email protected]',
license='MIT',
keywords='latex mathml',
classifiers=['Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: MIT License', 'Topic :: Scientific/Engineering :: Mathematics', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Text Processing :: Markup :: HTML', 'Topic :: Text Processing :: Markup :: LaTeX', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: Implementation :: CPython'],
entry_points={"console_scripts": ["latex2mathml = latex2mathml.converter:main", "l2m = latex2mathml.converter:main"]},
packages=['latex2mathml'],
package_dir={"": "."},
package_data={"latex2mathml": ["*.txt"]},
install_requires=[],
extras_require={"dev": ["autoflake==1.*,>=1.3.1", "black==22.*,>=22.3.0", "dephell==0.*,>=0.8.3", "isort==5.*,>=5.10.1", "mistune<2.0.0", "multidict==6.*,>=6.0.2", "mypy==0.*,>=0.942.0", "pyproject-flake8==0.*,>=0.0.1.a3", "pytest==7.*,>=7.1.1", "pytest-clarity==1.*,>=1.0.1", "pytest-cov==3.*,>=3.0.0", "tomlkit==0.7.0", "xmljson==0.*,>=0.2.0"]},
)