File tree Expand file tree Collapse file tree 4 files changed +10
-12
lines changed
Expand file tree Collapse file tree 4 files changed +10
-12
lines changed Original file line number Diff line number Diff line change 11/ndg_httpsclient.egg-info /
22/dist /
3+ * .pyc
4+ .eggs /
Original file line number Diff line number Diff line change 1+ FROM ubuntu:14.04
2+ RUN apt-get -yqq update && apt-get -yqq install python-pip python-dev libffi-dev libxmlsec1-openssl libssl-dev
3+ WORKDIR /app/
4+ ADD . /app/
5+ RUN pip install -e .
6+ CMD ["python" , "setup.py" , "test" ]
Original file line number Diff line number Diff line change 1- try :
2- import pkg_resources
3- pkg_resources .declare_namespace (__name__ )
4- except ImportError :
5- # don't prevent use if pkg_resources isn't installed
6- from pkgutil import extend_path
7- __path__ = extend_path (__path__ , __name__ )
8-
9- import modulefinder
10- for p in __path__ :
11- modulefinder .AddPackagePath (__name__ , p )
1+ __path__ = __import__ ('pkgutil' ).extend_path (__path__ , __name__ )
Original file line number Diff line number Diff line change 127127 long_description = _long_description ,
128128 license = 'BSD - See ndg/httpsclient/LICENCE file for details' ,
129129 packages = find_packages (),
130- namespace_packages = NAMESPACE_PKGS ,
130+ # namespace_packages=NAMESPACE_PKGS,
131131# package_dir={'ndg.httpsclient': 'ndg/httpsclient'},
132132 package_data = {
133133 'ndg.httpsclient' : [
You can’t perform that action at this time.
0 commit comments