forked from kliment/Printrun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·99 lines (85 loc) · 3.18 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
#!/usr/bin/env python3
# This file is part of the Printrun suite.
#
# Printrun 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.
#
# Printrun 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 Printrun. If not, see <http://www.gnu.org/licenses/>.
import ast
import glob
from setuptools import setup
from setuptools import find_packages
try:
from Cython.Build import cythonize
extensions = cythonize("printrun/gcoder_line.pyx")
from Cython.Distutils import build_ext
except ImportError as e:
print("WARNING: Failed to cythonize: %s" % e)
# Debug helper: uncomment these:
# import traceback
# traceback.print_exc()
extensions = None
build_ext = None
with open('README.md') as f:
long_description = f.read()
with open('requirements.txt') as f:
install_requires = f.readlines()
with open('printrun/printcore.py') as f:
for line in f.readlines():
if line.startswith("__version__"):
__version__ = ast.literal_eval(line.split("=")[1].strip())
def multiglob(*globs):
paths = []
for g in globs:
paths.extend(glob.glob(g))
return paths
data_files = [
('share/pixmaps', multiglob('*.png')),
('share/applications', multiglob('*.desktop')),
('share/metainfo', multiglob('*.appdata.xml')),
('share/pronterface/images', multiglob('images/*.png',
'images/*.svg')),
]
for locale in glob.glob('locale/*/LC_MESSAGES/'):
data_files.append((f'share/{locale}', glob.glob(f'{locale}/*.mo')))
setup(
name="Printrun",
version=__version__,
description="Host software for 3D printers",
author="Kliment Yanev, Guillaume Seguin and others",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/kliment/Printrun/",
license="GPLv3+",
data_files=data_files,
packages=find_packages(),
scripts=["pronsole.py", "pronterface.py", "plater.py", "printcore.py"],
ext_modules=extensions,
python_requires=">=3.6",
install_requires=install_requires,
setup_requires=["Cython"],
classifiers=[
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Printing",
],
zip_safe=False,
)