diff --git a/.dockerignore b/.dockerignore index 2e8581d..e0614ce 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,9 +1,14 @@ +.coverage .git .github +.idea +.pre-commit-ocnfig.yaml +.pytest* CHANGELOG.md conftest.py LICENSE MANIFEST.in build dist -venv* \ No newline at end of file +testing +venv* diff --git a/Dockerfile b/Dockerfile index 01085f0..a46abad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ LABEL maintainer="astro.chun@gmail.com" COPY github_stats_pages ./github_stats_pages COPY scripts ./scripts -COPY requirements.txt setup.py setup.cfg ./ +COPY pyproject.toml setup.py setup.cfg ./ COPY README.md . COPY entrypoint.sh /entrypoint.sh diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 54eb9cf..0000000 --- a/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -requests>=2.22.0 -pandas==1.2.4 -github-traffic-stats==1.2.0 -Jinja2==3.0.3 -bokeh==2.3.0 -markdown==3.3.4 -PyGithub==1.55 -tabulate==0.8.7