File: setup.py

package info (click to toggle)
printrun 2.0.0~rc7-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,908 kB
  • sloc: python: 13,426; xml: 62; ansic: 20; makefile: 16; sh: 12
file content (113 lines) | stat: -rwxr-xr-x 3,762 bytes parent folder | download | duplicates (3)
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
#!/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
from setuptools import extension
from setuptools.command.build_ext import build_ext as build_ext_orig

try:
    from Cython.Build import cythonize
    # extensions = cythonize("printrun/gcoder_line.pyx")
    # from Cython.Distutils import build_ext
    extensions = [extension.Extension("printrun.gcoder_line",
                                      ["printrun/gcoder_line.c"])]
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')))


class build_ext (build_ext_orig):

    def run(self):
        try:
            cythonize("printrun/gcoder_line.pyx")
        except NameError as e:
            print("WARNING: Failed to cythonize: %s" % e)
        super().run()

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"],
    cmdclass = {"build_ext": build_ext},
    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,
)