-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 682 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 682 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
from setuptools import setup, Extension
ext_module = Extension(
name='ParticleMesherPy', # Name of the Python module
sources=[], # No source files needed
library_dirs=['./ParticleMesherPy'],
libraries=[ # Names of the prebuilt libraries
'ParticleMesherPy',
'boost_iostreams',
'blosc',
'openvdb',
'tbb',
'particle_mesher',
],
)
setup(
name='ParticleMesherPy',
version='0.1',
python_requires='>=3.9',
ext_modules=[ext_module],
)
# setup(
# name='ParticleMesherPy',
# version='0.1',
# package_data={'': ['*.so']},
# install_requires=[], # Add any dependencies here
# )