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
e2de802d
Commit
e2de802d
authored
Sep 15, 2010
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed build dependency on python-qt4
parent
2caed6a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
control
debian/control
+1
-1
setup.py
setup.py
+5
-3
No files found.
debian/control
View file @
e2de802d
...
...
@@ -3,7 +3,7 @@ Section: python
Priority: optional
Maintainer: Dan Pascu <dan@ag-projects.com>
Uploaders: Adrian Georgescu <ag@ag-projects.com>, Lucian Stanescu <luci@ag-projects.com>, Saul Ibarra <saul@ag-projects.com>
Build-Depends: cdbs (>= 0.4.47), debhelper (>= 7), python-all (>= 2.5), python-
qt4 (>= 4.7), python-
support
Build-Depends: cdbs (>= 0.4.47), debhelper (>= 7), python-all (>= 2.5), python-support
Standards-Version: 3.9.1
Homepage: http://icanblink.com
...
...
setup.py
View file @
e2de802d
...
...
@@ -2,16 +2,18 @@
from
distutils.core
import
setup
import
os
import
re
import
glob
from
blink
import
__version__
def
get_version
():
return
re
.
search
(
r"""__version__\s+=\s+(?P<quote>['"])(?P<version>.+?)(?P=quote)"""
,
open
(
'blink/__init__.py'
)
.
read
())
.
group
(
'version'
)
def
find_packages
(
toplevel
):
return
[
directory
.
replace
(
'/'
,
'.'
)
for
directory
,
subdirs
,
files
in
os
.
walk
(
toplevel
)
if
'__init__.py'
in
files
]
setup
(
name
=
"blink"
,
version
=
__version__
,
version
=
get_version
()
,
author
=
"AG Projects"
,
author_email
=
"support@ag-projects.com"
,
url
=
"http://icanblink.com"
,
...
...
@@ -27,7 +29,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'
)),
(
'share/blink/icons'
,
glob
.
glob
(
'resources/icons/*.png'
)
+
glob
.
glob
(
'resources/icons/*.svg'
)),
(
'share/blink/sounds'
,
glob
.
glob
(
'resources/sounds/*.wav'
))
],
scripts
=
[
'bin/blink'
,
'bin/blink-settings'
]
...
...
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