Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
logilab-common
Commits
d99a08d81a50
Commit
e3cdc32e
authored
Apr 20, 2010
by
Sylvain Thénault
Browse files
dependency_links can't be None w/ setuptools
parent
4683dfb8d2d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
d99a08d8
...
...
@@ -38,7 +38,7 @@ subpackage_of = getattr(__pkginfo__, 'subpackage_of', None)
include_dirs
=
getattr
(
__pkginfo__
,
'include_dirs'
,
[])
ext_modules
=
getattr
(
__pkginfo__
,
'ext_modules'
,
None
)
install_requires
=
getattr
(
__pkginfo__
,
'install_requires'
,
None
)
dependency_links
=
getattr
(
__pkginfo__
,
'dependency_links'
,
None
)
dependency_links
=
getattr
(
__pkginfo__
,
'dependency_links'
,
[]
)
STD_BLACKLIST
=
(
'CVS'
,
'.svn'
,
'.hg'
,
'debian'
,
'dist'
,
'build'
)
...
...
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