Skip to content

Commit 580e37a

Browse files
committed
init
1 parent 8609189 commit 580e37a

6 files changed

Lines changed: 30 additions & 0 deletions

File tree

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Python-generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# Virtual environments
10+
.venv
11+
12+
# macOS
13+
.DS_Store

.python-version

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

README.md

Whitespace-only changes.

pyproject.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[project]
2+
name = "physics-plot"
3+
version = "0.1.0"
4+
description = "matplotlib styles and utils"
5+
readme = "README.md"
6+
authors = [
7+
{ name = "Cory Chu", email = "cory@gwlab.page" }
8+
]
9+
requires-python = ">=3.8"
10+
dependencies = []
11+
12+
[build-system]
13+
requires = ["uv_build>=0.9.0,<0.10.0"]
14+
build-backend = "uv_build"

src/physics_plot/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def hello() -> str:
2+
return "Hello from physics-plot!"

src/physics_plot/py.typed

Whitespace-only changes.

0 commit comments

Comments
 (0)