Skip to content

Commit 4520a28

Browse files
authored
Merge pull request #5 from acceleratescience/feature/add-toml
feat: add uv venv and .toml
2 parents 307616d + 214d56f commit 4520a28

File tree

5 files changed

+555
-4
lines changed

5 files changed

+555
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
/venv
1+
/.venv
2+
/.idea
23
**/.DS_Store

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12

pyproject.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[project]
2+
name = "docker-for-science"
3+
version = "0.1.0"
4+
description = "How to work with Docker to make your code reproducible"
5+
authors = [
6+
{ name = "Ryan Daniels" },
7+
{ name = "Radzim Sendyka" },
8+
{ name = "Fin Griffin" },
9+
]
10+
readme = "README.md"
11+
requires-python = ">=3.12"
12+
dependencies = []
13+
14+
[dependency-groups]
15+
dev = [
16+
"mkdocs>=1.6.1",
17+
"mkdocs-material>=9.6.23",
18+
"mkdocstrings>=0.30.1",
19+
]

requirements.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)