forked from drfenixion/freecad.robotcad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 782 Bytes
/
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
import os
from setuptools import setup
# 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', 'cross', 'version.py',
)
with open(version_path) as fp:
exec(fp.read())
setup(
name='freecad.cross',
version=str(__version__),
packages=[
'freecad',
'freecad.cross',
],
maintainer='Vasily S',
maintainer_email='[email protected]',
url='https://github.com/drfenixion/freecad.overcross.git',
description='RobotCAD (FreeCAD OVERCROSS) is a workbench to work with ROS in FreeCAD',
install_requires=[],
include_package_data=True,
)
# install_requires should be ['xacro'].