obasync/setup.py

23 lines
698 B
Python
Executable File

import os
import sys
from setuptools import setup
# For Python shipped with OpenOffice, python is a wrapper
# for python.bin that fixes the import and library path. We should
# call python instead of python.bin. """
import os
import sys
if os.path.basename(sys.executable) == "python.bin":
sys.executable = os.path.join(
os.path.dirname(sys.executable), "python")
setup(name="obasync",
version="0.2",
description="Office Basic macro source synchronizer",
url="https://github.com/imacat/obasync",
author="imacat",
author_email="imacat@mail.imacat.idv.tw",
license="Apache License, Version 2.0",
zip_safe=False,
scripts=["bin/obasync"])