split setup.py into multiple lines
to make it easier for patching in Debian...pull/1418/head
parent
3de9bbb73d
commit
042597552a
|
@ -8,6 +8,9 @@ setup(name='pyassimp',
|
||||||
description='Python bindings for the Open Asset Import Library (ASSIMP)',
|
description='Python bindings for the Open Asset Import Library (ASSIMP)',
|
||||||
url='https://github.com/assimp/assimp',
|
url='https://github.com/assimp/assimp',
|
||||||
packages=['pyassimp'],
|
packages=['pyassimp'],
|
||||||
data_files=[('share/pyassimp', ['README.md']),
|
data_files=[
|
||||||
('share/examples/pyassimp', ['scripts/' + f for f in os.listdir('scripts/')])], requires=['numpy']
|
('share/pyassimp', ['README.md']),
|
||||||
|
('share/examples/pyassimp', ['scripts/' + f for f in os.listdir('scripts/')])
|
||||||
|
],
|
||||||
|
requires=['numpy']
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue