Skip to content

Commit 7fdd24d

Browse files
authored
fix setup missing files (#414)
* fix setup missing files
1 parent dbfa4e1 commit 7fdd24d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ COPY . dislib/
55

66
ENV PYTHONPATH=$PYTHONPATH:/dislib
77
ENV LC_ALL=C.UTF-8
8-
RUN python3 -m pip install --upgrade -r /dislib/requirements.txt
8+
RUN python3 -m pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org --upgrade -r /dislib/requirements.txt
99

1010
ENV COMPSS_LOAD_SOURCE false
1111

MANIFEST.in

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include VERSION
2+
include requirements.txt
3+
include README.md

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def parse_requirements():
3232
'Source': 'https://github.com/bsc-wdc/dislib',
3333
'Tracker': 'https://github.com/bsc-wdc/dislib/issues',
3434
},
35-
packages=setuptools.find_packages(),
35+
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
3636
classifiers=[
3737
"Programming Language :: Python :: 3 :: Only",
3838
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)