#!/usr/bin/env python3
############################################################################
#
#   Copyright (C) 2017
#    Damian Wrobel <dwrobel@ertelnet.rybnik.pl>
#
#   This file is part of DXF2GCODE.
#
#   DXF2GCODE is free software: you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.
#
#   DXF2GCODE is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with DXF2GCODE.  If not, see <http://www.gnu.org/licenses/>.
#
############################################################################

import distutils.command.install_scripts
import glob
import platform
import shutil

from setuptools import setup


class install_scripts(distutils.command.install_scripts.install_scripts):
    def run(self):
        distutils.command.install_scripts.install_scripts.run(self)
        for script in self.get_outputs():
            if script.endswith(".py"):
                shutil.move(script, script[:-3])


setup_requires = []

if platform.system() == 'Darwin':
    setup_requires.append('py2app')

setup(
    name='dxf2gcode',

    version='20240509',

    description='2D drawings to CNC machine compatible G-Code converter..',

    long_description=('DXF2GCODE is a tool for converting 2D (dxf, pdf, ps)'
                       ' drawings to CNC machine compatible GCode.'
                       ' Release Candidate based on development branch'),

    url='https://sourceforge.net/p/dxf2gcode/wiki/Home/',

    author='Christian Kohloeffel',

    author_email='christian.kohloeffel@googlemail.com',

    license='GPLv3',

    packages=[
        'dxf2gcode',
        'dxf2gcode.core',
        'dxf2gcode.dxfimport',
        'dxf2gcode.globals',
        'dxf2gcode.gui',
        'dxf2gcode.postpro'
    ],

    py_modules=[
        "dxf2gcode_images5_rc",
        "dxf2gcode_ui5"
    ],

    install_requires=[
        'configobj',
        'PyQt5',
        'PyOpenGL'
    ],

    include_package_data=True,

    data_files=[
        ('share/metainfo', ['dxf2gcode.appdata.xml']),
        ('share/applications', ['dxf2gcode.desktop']),
        ('share/dxf2gcode/i18n', glob.glob('i18n/*.qm')),
        ('share/man/man1', ['dxf2gcode.1']),
        ('share/icons/hicolor/scalable/apps/', ['images/dxf2gcode.svg'])
    ],

    cmdclass={"install_scripts": install_scripts},

    scripts=['dxf2gcode.py'],

    # setup for py2app
    app=['dxf2gcode.py'],
    options={
        'py2app': {
            'iconfile': 'images/dxf2gcode.icns',
            'plist': {
                'CFBundleName': "dxf2gcode",
                'CFBundleDisplayName': "dxf2gcode",
                'CFBundleIdentifier': "org.sourceforge.dxf2gcode"
            }
        }
    },
    setup_requires=setup_requires
)
