-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·25 lines (21 loc) · 1.22 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
#!/usr/bin/env python3
#
# ls data/* | awk '{print "\""$1"\""}' | tr "\n" ","
#
import os
from setuptools import setup
setup(
name='viaconstructor',
version='0.8.1',
author='Oliver Dippel',
author_email='[email protected]',
packages=['viaconstructor', 'viaconstructor.ext.cavaliercontours', 'viaconstructor.ext.HersheyFonts', 'viaconstructor.ext.meshcut', 'viaconstructor.ext.stl', 'viaconstructor.ext.svgpathtools', 'viaconstructor.input_plugins', 'viaconstructor.output_plugins', 'viaconstructor.preview_plugins', 'viaconstructor.tools'],
package_data={'viaconstructor.ext.cavaliercontours': ['lib/libCavalierContours.x86_64-linux.so', 'lib/libCavalierContours.aarch64-linux.so', 'lib/libCavalierContours.x86_64-darwin.so'], 'viaconstructor/ext/nest2D': ['nest2D.cpython-39-x86_64-linux-gnu.so']},
scripts=['bin/viaconstructor'],
url='https://github.com/multigcs/viaconstructor',
license='LICENSE',
description='python based cam-tool to convert dxf into gcode',
long_description=open('README.md').read(),
install_requires=["PyQt5", "ezdxf", "PyOpenGL", "Pillow", "pygame", "pyclipper", "setproctitle", "freetype-py", "python-utils", "svgwrite", "matplotlib", "numpy"],
include_package_data=True,
)