Rename package so it has a valid name
This commit is contained in:
parent
004b4e3952
commit
cb54bd1b0a
8 changed files with 6 additions and 6 deletions
|
@ -3,6 +3,6 @@ FROM python:3.8.1-alpine3.11
|
|||
COPY requirements.txt /app/requirements.txt
|
||||
RUN pip install -r /app/requirements.txt
|
||||
|
||||
COPY ./todoist-github /app
|
||||
COPY ./todoist_github /app
|
||||
|
||||
CMD ["/app/cli.py"]
|
||||
|
|
|
@ -4,4 +4,4 @@ set -e
|
|||
|
||||
PATH=env/bin:${PATH}
|
||||
|
||||
python3 -m todoist-github
|
||||
python3 -m todoist_github
|
||||
|
|
|
@ -6,7 +6,7 @@ PATH=env/bin:${PATH}
|
|||
|
||||
set -x
|
||||
|
||||
black --check todoist-github/
|
||||
flake8 todoist-github/
|
||||
isort -c -rc todoist-github/
|
||||
mypy todoist-github/
|
||||
black --check todoist_github/
|
||||
flake8 todoist_github/
|
||||
isort -c -rc todoist_github/
|
||||
mypy todoist_github/
|
||||
|
|
Reference in a new issue