-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 705 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(
name='OCCT',
version='7.2.0.1',
packages=['OCCT', 'OCCT.Boolean', 'OCCT.Exchange', 'OCCT.Topology',
'OCCT.Visualization'],
package_data={'OCCT': ['*.so', '*.pyd', '*.dll',
'Visualization/_resources/*']},
author='Laughlin Research, LLC',
author_email='info@laughlinresearch.com',
description='Python bindings for OpenCASCADE.',
url='https://github.com/LaughlinResearch/pyOCCT',
license='LGPL v2.1',
platforms=['Windows', 'Linux'],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python']
)