You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
916 B
21 lines
916 B
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)
|
|
|