Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
bd2ad941
Commit
bd2ad941
authored
May 03, 2013
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Plain Diff
Merge dist module
--HG-- branch : Setuptools-Distribute merge
parents
0eaf9e68
737fe613
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
9 deletions
+43
-9
setuptools/dist.py
setuptools/dist.py
+43
-9
No files found.
setuptools/dist.py
View file @
bd2ad941
...
...
@@ -62,8 +62,8 @@ def check_nsp(dist, attr, value):
parent
=
'.'
.
join
(
nsp
.
split
(
'.'
)[:
-
1
])
if
parent
not
in
value
:
distutils
.
log
.
warn
(
"
%r is declared as a package namespace, but %r is not:
"
" please correct this in setup.py"
,
nsp
,
parent
"
WARNING: %r is declared as a package namespace, but %r
"
"
is not:
please correct this in setup.py"
,
nsp
,
parent
)
def
check_extras
(
dist
,
attr
,
value
):
...
...
@@ -121,6 +121,47 @@ def check_package_data(dist, attr, value):
attr
+
" must be a dictionary mapping package names to lists of "
"wildcard patterns"
)
def
check_packages
(
dist
,
attr
,
value
):
for
pkgname
in
value
:
if
not
re
.
match
(
r'\
w+(
\.\
w+)*
', pkgname):
distutils.log.warn(
"WARNING: %r not a valid package name; please use only"
".-separated package names in setup.py", pkgname
)
class Distribution(_Distribution):
"""Distribution with support for features, tests, and package data
...
...
@@ -845,11 +886,4 @@ class Feature:
def
check_packages
(
dist
,
attr
,
value
):
for
pkgname
in
value
:
if
not
re
.
match
(
r'\
w+(
\.\
w+)*
', pkgname):
distutils.log.warn(
"WARNING: %r not a valid package name; please use only"
".-separated package names in setup.py", pkgname
)
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