Skip to content

Commit

Permalink
split setup.py into multiple lines
Browse files Browse the repository at this point in the history
to make it easier for patching in Debian...
  • Loading branch information
umlaeute committed Sep 2, 2017
1 parent 3de9bbb commit 0425975
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions port/PyAssimp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
description='Python bindings for the Open Asset Import Library (ASSIMP)',
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/')])], requires=['numpy']
data_files=[
('share/pyassimp', ['README.md']),
('share/examples/pyassimp', ['scripts/' + f for f in os.listdir('scripts/')])
],
requires=['numpy']
)

0 comments on commit 0425975

Please sign in to comment.