Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cubicweb
cubes
rqlcontroller
Commits
b83118f7f67c
Commit
3eb44a1c
authored
Feb 02, 2018
by
Denis Laxalde
Browse files
Flake8 and cleanup __pkginfo__
Drop useless stuff and make the file flake8-compliant. Related to #17047898.
parent
989dca3f8582
Changes
1
Hide whitespace changes
Inline
Side-by-side
__pkginfo__.py
View file @
b83118f7
# pylint: disable=W0622
"""cubicweb-rqlcontroller application packaging information"""
from
os.path
import
join
from
glob
import
glob
modname
=
'rqlcontroller'
distname
=
'cubicweb-rqlcontroller'
...
...
@@ -24,28 +28,12 @@ classifiers = [
'Framework :: CubicWeb'
,
'Programming Language :: Python'
,
'Programming Language :: JavaScript'
,
]
from
os
import
listdir
as
_listdir
from
os.path
import
join
,
isdir
from
glob
import
glob
]
THIS_CUBE_DIR
=
join
(
'share'
,
'cubicweb'
,
'cubes'
,
modname
)
def
listdir
(
dirpath
):
return
[
join
(
dirpath
,
fname
)
for
fname
in
_listdir
(
dirpath
)
if
fname
[
0
]
!=
'.'
and
not
fname
.
endswith
(
'.pyc'
)
and
not
fname
.
endswith
(
'~'
)
and
not
isdir
(
join
(
dirpath
,
fname
))]
data_files
=
[
# common files
[
THIS_CUBE_DIR
,
[
fname
for
fname
in
glob
(
'*.py'
)
if
fname
!=
'setup.py'
]],
]
# check for possible extended cube layout
for
dname
in
(
'entities'
,
'views'
,
'sobjects'
,
'hooks'
,
'schema'
,
'data'
,
'wdoc'
,
'i18n'
,
'migration'
):
if
isdir
(
dname
):
data_files
.
append
([
join
(
THIS_CUBE_DIR
,
dname
),
listdir
(
dname
)])
# Note: here, you'll need to add subdirectories if you want
# them to be included in the debian package
]
Write
Preview
Supports
Markdown
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