Skip to content

Commit

Permalink
fix setup missing files (#414)
Browse files Browse the repository at this point in the history
* fix setup missing files
  • Loading branch information
cTatu authored Oct 21, 2022
1 parent dbfa4e1 commit 7fdd24d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ COPY . dislib/

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

ENV COMPSS_LOAD_SOURCE false

Expand Down
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include VERSION
include requirements.txt
include README.md
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def parse_requirements():
'Source': 'https://github.com/bsc-wdc/dislib',
'Tracker': 'https://github.com/bsc-wdc/dislib/issues',
},
packages=setuptools.find_packages(),
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
Expand Down

0 comments on commit 7fdd24d

Please sign in to comment.