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
|
From: Sebastian Kuzminsky <seb@highlab.com>
Date: Thu, 8 Mar 2018 08:52:30 -0700
Subject: update make_tr.py for new top-level module
Forwarded: https://groups.google.com/forum/#!topic/dxf2gcode-dev/0SbINj4Gjz4
---
make_tr.py | 36 ++++++++++++++++++------------------
1 file changed, 18 insertions(+), 18 deletions(-)
diff --git a/make_tr.py b/make_tr.py
index eaa9906..57bfb2b 100755
--- a/make_tr.py
+++ b/make_tr.py
@@ -34,24 +34,24 @@ else:
FILEPATH = os.path.realpath(os.path.dirname(sys.argv[0]))
-FILES = ("../core/arcgeo.py",
- "../core/project.py",
- "../core/shape.py",
- "../dxfimport/geoent_arc.py",
- "../dxfimport/geoent_circle.py",
- "../dxfimport/geoent_line.py",
- "../dxfimport/importer.py",
- "../globals/config.py",
- "../gui/canvas.py",
- "../gui/canvas2d.py",
- "../gui/canvas3d.py",
- "../gui/configwindow.py",
- "../gui/messagebox.py",
- "../gui/popupdialog.py",
- "../gui/treehandling.py",
- "../postpro/postprocessor.py",
- "../postpro/postprocessorconfig.py",
- "../postpro/tspoptimisation.py",
+FILES = ("../dxf2gcode/core/arcgeo.py",
+ "../dxf2gcode/core/project.py",
+ "../dxf2gcode/core/shape.py",
+ "../dxf2gcode/dxfimport/geoent_arc.py",
+ "../dxf2gcode/dxfimport/geoent_circle.py",
+ "../dxf2gcode/dxfimport/geoent_line.py",
+ "../dxf2gcode/dxfimport/importer.py",
+ "../dxf2gcode/globals/config.py",
+ "../dxf2gcode/gui/canvas.py",
+ "../dxf2gcode/gui/canvas2d.py",
+ "../dxf2gcode/gui/canvas3d.py",
+ "../dxf2gcode/gui/configwindow.py",
+ "../dxf2gcode/gui/messagebox.py",
+ "../dxf2gcode/gui/popupdialog.py",
+ "../dxf2gcode/gui/treehandling.py",
+ "../dxf2gcode/postpro/postprocessor.py",
+ "../dxf2gcode/postpro/postprocessorconfig.py",
+ "../dxf2gcode/postpro/tspoptimisation.py",
"../dxf2gcode.py",
"../dxf2gcode.ui"
)
|