Skip to content

Commit

Permalink
add: author
Browse files Browse the repository at this point in the history
  • Loading branch information
a5chin committed Sep 11, 2024
1 parent 56752b1 commit 4116af7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM debian:bookworm-slim AS builder

LABEL maintainer="a5chin <a5chin.origin+contact@gmain.com>"

WORKDIR /opt

# The installer requires curl (and certificates) to download the release archive
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
ARG VARIANT=3.12
FROM python:${VARIANT} AS builder

LABEL maintainer="a5chin <a5chin.origin+contact@gmain.com>"

ENV PYTHONDONTWRITEBYTECODE=True
ENV UV_LINK_MODE=copy

Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
[project]
name = "default"
version = "0.1.0"
description = "Add your description here"
description = "This repository contains configurations to set up a Python development environment using VSCode's Dev Container feature. The environment includes uv and Ruff."
authors = [
{ name = "a5chin" }
{name = "a5chin", email = "a5chin.origin+contact@gmail.com"}
]
maintainers = [
{name = "a5chin", email = "a5chin.origin+contact@gmail.com"}
]
requires-python = ">=3.9"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = []

[tool.uv]
Expand Down

0 comments on commit 4116af7

Please sign in to comment.