-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 741 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 741 Bytes
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='galou',
maintainer_email='gael.ecorchard@cvut.cz',
url='https://github.com/galou/freecad.cross.git',
description='CROSS, a workbench to work with ROS in FreeCAD',
install_requires=[],
include_package_data=True,
)
# install_requires should be ['xacro'].