Revert "Installing assimp library as well"

This reverts commit 33bd5cfcfb.

Installing the assimp library from setup.py is *not* a good idea as
it will break every packaging effort.

Besides, the original commit relies on an hard-coded path to find the
library that may not exist.
pull/1298/head
Séverin Lemaignan 2017-06-06 15:14:18 +01:00
parent 6730d658d7
commit 4d37f90ea5
2 changed files with 2 additions and 7 deletions

View File

@ -8,7 +8,6 @@ import os
import ctypes
from ctypes import POINTER
import operator
import sys
try: import numpy
except: numpy = None
@ -41,8 +40,6 @@ elif os.name=='nt':
if 'assimp' in dir_candidate.lower():
additional_dirs.append(dir_candidate)
additional_dirs += sys.path
#print(additional_dirs)
def vec2tuple(x):
""" Converts a VECTOR3D to a Tuple """

View File

@ -9,7 +9,5 @@ setup(name='pyassimp',
url='https://github.com/assimp/assimp',
packages=['pyassimp'],
data_files=[('share/pyassimp', ['README.md']),
('share/examples/pyassimp', ['scripts/' + f for f in os.listdir('scripts/')]),
('lib/', [f for f in os.listdir('../../lib') if os.path.isfile(f)])],
requires=['numpy']
('share/examples/pyassimp', ['scripts/' + f for f in os.listdir('scripts/')])], requires=['numpy']
)