-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 770 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 770 Bytes
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
# -*- coding: utf-8 -*-
# pylint: disable=missing-docstring
import os
from setuptools import setup
BASEDIR = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(BASEDIR, 'README.rst'), 'r') as f:
LONG_DESCRIPTION = f.read()
setup(
name='mathml2omml',
version='0.0.1',
description='',
long_description=LONG_DESCRIPTION,
url='https://github.com/amedama41/mathml2omml',
author='amedama41',
author_email='kamo.devel41@gmail.com',
keywords=['MathML', 'OpenXML'],
packages=['mathml2omml'],
install_requires=[],
python_requires='>=3.5',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Markup :: XML',
]
)