commit a1b5e72032f948d1601c1f9372cdfad9a4969e59 Author: Yunxiao Xu Date: Wed Apr 1 15:52:58 2026 -0700 Initial project scaffold with uv diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d354474 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +__pycache__/ +*.py[cod] +*$py.class +*.egg-info/ +*.egg +dist/ +build/ +.eggs/ +*.whl +.venv/ +.ruff_cache/ +.mypy_cache/ +.pytest_cache/ +.env diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a3580cd --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[project] +name = "rp" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +authors = [ + { name = "Yunxiao Xu", email = "xuyunxiao2001@gmail.com" } +] +requires-python = ">=3.12" +dependencies = [] + +[build-system] +requires = ["uv_build>=0.11.2,<0.12.0"] +build-backend = "uv_build" diff --git a/src/rp/__init__.py b/src/rp/__init__.py new file mode 100644 index 0000000..cf2ac46 --- /dev/null +++ b/src/rp/__init__.py @@ -0,0 +1,2 @@ +def hello() -> str: + return "Hello from rp!" diff --git a/src/rp/py.typed b/src/rp/py.typed new file mode 100644 index 0000000..e69de29