forked from six519/libreoffice_convert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·29 lines (27 loc) · 897 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
#!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="libreoffice_convert",
version="1.0",
description="Python module using LibreOffice API to convert file format to another file format",
author="Ferdinand Silva",
author_email="[email protected]",
packages=["libreoffice_convert"],
url="http://ferdinandsilva.com",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: Freeware",
],
entry_points = {
"console_scripts": [
"libreoffice_convert = libreoffice_convert.commands:libreoffice_convert"]
},
download_url="http://ferdinandsilva.com",
)