forked from pib/pycam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·121 lines (104 loc) · 3.98 KB
/
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
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
112
113
114
115
116
117
118
119
120
121
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
$Id$
Copyright 2010 Lars Kruse <devel@sumpfralle.de>
Copyright 2010 Arthur Magill
This file is part of PyCAM.
PyCAM 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.
PyCAM 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 PyCAM. If not, see <http://www.gnu.org/licenses/>.
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import distutils.sysconfig
import glob
import os.path
import sys
import shutil
BASE_DIR = os.path.realpath(os.path.abspath(os.path.dirname(__file__)))
from pycam import VERSION
WINDOWS_START_SCRIPT = os.path.join("scripts", "pycam-loader.py")
DEFAULT_START_SCRIPT = os.path.join("scripts", "pycam")
# we don't want to include the windows postinstall script in other installers
is_windows_installer = "bdist_wininst" in sys.argv or "bdist_msi" in sys.argv
if is_windows_installer:
shutil.copy2(os.path.join(BASE_DIR, DEFAULT_START_SCRIPT),
os.path.join(BASE_DIR, WINDOWS_START_SCRIPT))
PLATFORM_SCRIPTS = [WINDOWS_START_SCRIPT,
os.path.join("scripts", "pycam_win32_postinstall.py")]
else:
PLATFORM_SCRIPTS = [DEFAULT_START_SCRIPT]
setup(
name="pycam",
version=VERSION,
license="GPL v3",
description="Open Source CAM - Toolpath Generation for 3-Axis CNC machining",
author="Lars Kruse",
author_email="devel@sumpfralle.de",
provides=["pycam"],
requires=["ode", "gtk", "gtk.gtkgl", "OpenGL"],
url="http://sourceforge.net/projects/pycam",
download_url="http://sourceforge.net/projects/pycam/files",
keywords=["3-axis", "cnc", "cam", "toolpath", "machining", "g-code"],
long_description="""IMPORTANT NOTE: Please read the list of requirements:
http://sourceforge.net/apps/mediawiki/pycam/index.php?title=Requirements
Basically you will need Python, GTK and OpenGL.
Windows: select Python 2.5 in the following dialog.
""",
# full list of classifiers at:
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Topic :: Scientific/Engineering",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: Manufacturing",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
],
packages=[
"pycam",
"pycam.Cutters",
"pycam.Exporters",
"pycam.Geometry",
"pycam.Gui",
"pycam.Importers",
"pycam.PathGenerators",
"pycam.PathProcessors",
"pycam.Physics",
"pycam.Plugins",
"pycam.Simulation",
"pycam.Toolpath",
"pycam.Utils",
],
scripts = PLATFORM_SCRIPTS,
data_files=[("share/pycam/doc", [
"COPYING.TXT",
"INSTALL.TXT",
"LICENSE.TXT",
"README.TXT",
"Changelog",
"release_info.txt"]),
("share/pycam/ui", glob.glob(os.path.join("share", "ui", "*"))),
("share/pycam/fonts", glob.glob(os.path.join("share", "fonts", "*"))),
("share/pycam", [os.path.join("share", "pycam.ico"), os.path.join("share", "misc", "DXF.gpl")]),
("share/pycam/samples", glob.glob(os.path.join("samples", "*"))),
],
)
if is_windows_installer:
os.remove(os.path.join(BASE_DIR, WINDOWS_START_SCRIPT))
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4