3 changed files with 23 additions and 0 deletions
@ -0,0 +1 @@ |
|||||||
|
recursive-include freecad/LaserCladdingWorkbench/resources * |
||||||
@ -0,0 +1,21 @@ |
|||||||
|
from setuptools import setup |
||||||
|
import os |
||||||
|
from freecad.LaserCladdingWorkbench.version import __version__ |
||||||
|
# name: this is the name of the distribution. |
||||||
|
# Packages using the same name here cannot be installed together |
||||||
|
|
||||||
|
version_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), |
||||||
|
"freecad", "LaserCladdingWorkbench", "version.py") |
||||||
|
with open(version_path) as fp: |
||||||
|
exec(fp.read()) |
||||||
|
|
||||||
|
setup(name='freecad.LaserCladdingWorkbench', |
||||||
|
version=str(__version__), |
||||||
|
packages=['freecad', |
||||||
|
'freecad.LaserCladdingWorkbench'], |
||||||
|
maintainer="jk", |
||||||
|
maintainer_email="jk@postly.de", |
||||||
|
url="https://github.com/jkur/freecad-lasercladding-workbench", |
||||||
|
description="Workbench for LaserCladding Applications ", |
||||||
|
install_requires=['numpy', 'rpd', 'PythonSLM'], # should be satisfied by FreeCAD's system dependencies already |
||||||
|
include_package_data=True) |
||||||
Loading…
Reference in new issue