-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
21 lines (19 loc) · 841 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
import os
from freecad.Curves.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", "Curves", "version.py")
with open(version_path) as fp:
exec(fp.read())
setup(name='freecad.Curves',
version=str(__version__),
packages=['freecad',
'freecad.Curves'],
maintainer="Chris_G",
maintainer_email="[email protected]",
url="https://github.com/tomate44/CurvesWB",
description="Additional tools to manipulate curves and surfaces in FreeCAD",
install_requires=['numpy'], # should be satisfied by FreeCAD's system dependencies already
include_package_data=True)