-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (42 loc) · 1.12 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
from setuptools import setup
from os import path
from odt2md import (
__version__,
__description__,
__keywords__,
__url__,
__author__,
__author_email__
)
setup(
name='odt2md',
version=__version__,
description=__description__,
keywords=__keywords__,
url=__url__,
author=__author__,
author_email=__author_email__,
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Religion',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9'
],
packages=['odt2md'],
install_requires=['regex', 'lxml', 'lxmlx'],
package_data={
'odt2md': ['resources/profile.py'],
},
entry_points={
'console_scripts': [
'odt2md=odt2md.odt2md:main',
'show_styles=odt2md.show_styles:main'
],
},
)