Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
806e0a27
Commit
806e0a27
authored
Dec 15, 2010
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made icon resource list more manageable
parent
62cb4dd2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
setup.py
setup.py
+3
-2
No files found.
setup.py
View file @
806e0a27
#!/usr/bin/env python
from
distutils.core
import
setup
from
itertools
import
chain
import
glob
import
os
import
re
import
glob
def
get_version
():
...
...
@@ -29,7 +30,7 @@ setup(name = "blink",
],
packages
=
find_packages
(
'blink'
),
data_files
=
[(
'share/blink'
,
glob
.
glob
(
'resources/*.ui'
)),
(
'share/blink/icons'
,
glob
.
glob
(
'resources/icons/*.png'
)
+
glob
.
glob
(
'resources/icons/*.svg'
)
+
glob
.
glob
(
'resources/icons/*.ico'
)
+
glob
.
glob
(
'resources/icons/*.mng'
)),
(
'share/blink/icons'
,
list
(
chain
(
*
(
glob
.
glob
(
'resources/icons/*.
%
s'
%
ext
)
for
ext
in
(
'png'
,
'svg'
,
'mng'
,
'ico'
)))
)),
(
'share/blink/sounds'
,
glob
.
glob
(
'resources/sounds/*.wav'
))
],
scripts
=
[
'bin/blink'
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment