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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
#!/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
)
|