forked from a5chin/python-uv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request a5chin#35 from a5chin/feature/maintainer
Add author
- Loading branch information
Showing
3 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
FROM debian:bookworm-slim AS builder | ||
|
||
LABEL maintainer="a5chin <[email protected]>" | ||
|
||
WORKDIR /opt | ||
|
||
# The installer requires curl (and certificates) to download the release archive | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>" | ||
|
||
ENV PYTHONDONTWRITEBYTECODE=True | ||
ENV UV_LINK_MODE=copy | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = "[email protected]"} | ||
] | ||
maintainers = [ | ||
{name = "a5chin", email = "[email protected]"} | ||
] | ||
requires-python = ">=3.9" | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
dependencies = [] | ||
|
||
[tool.uv] | ||
|