-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
26 lines (23 loc) · 991 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
from setuptools import setup
import os
from freecad.plot.compile_resources import compile_resources
version_path = os.path.join(os.path.abspath(os.path.dirname(__file__)),
"freecad", "plot", "version.py")
with open(version_path) as fp:
exec(fp.read())
compile_resources()
setup(name='freecad.plot',
version=str(__version__),
packages=['freecad',
'freecad.plot',
'freecad.plot.plotAxes',
'freecad.plot.plotLabels',
'freecad.plot.plotPositions',
'freecad.plot.plotSave',
'freecad.plot.plotSeries'],
maintainer="looooo",
maintainer_email="[email protected]",
url="https://github.com/FreeCAD/plot",
description="externalized plot workbench. Created by Jose Luis Cercos Pita",
install_requires=['numpy', 'matplotlib'], # should be satisfied by FreeCAD's system dependencies already
include_package_data=True)