Initial commit

This commit is contained in:
Paillat
2024-07-30 10:49:05 +02:00
committed by GitHub
commit 5583d15cda
41 changed files with 1803 additions and 0 deletions

12
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM mcr.microsoft.com/devcontainers/python:3
RUN python -m pip install --upgrade pip \
&& python -m pip install 'flit>=3.8.0'
ENV FLIT_ROOT_INSTALL=1
COPY pyproject.toml .
RUN touch README.md \
&& mkdir -p src/python_package \
&& python -m flit install --only-deps --deps develop \
&& rm -r pyproject.toml README.md src