├── .cache └── .gitkeep ├── .devcontainer ├── .env.example ├── Dockerfile └── devcontainer.json ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── Dockerfile ├── LICENSE.txt ├── README.md ├── justfile ├── pyproject.toml ├── scripts └── this.py ├── shared └── utils │ ├── README.md │ ├── pyproject.toml │ └── src │ └── utils │ └── __init__.py ├── src └── core │ ├── README.md │ ├── pyproject.toml │ └── src │ └── core │ ├── __init__.py │ └── cli.py ├── tests ├── conftest.py ├── scripts │ └── test_this.py ├── shared │ └── utils │ │ └── test_return_one.py └── src │ └── core │ └── test_return_two.py └── uv.lock /.cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.devcontainer/.env.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/README.md -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/scripts/this.py -------------------------------------------------------------------------------- /shared/utils/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/utils/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/shared/utils/pyproject.toml -------------------------------------------------------------------------------- /shared/utils/src/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/shared/utils/src/utils/__init__.py -------------------------------------------------------------------------------- /src/core/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/src/core/pyproject.toml -------------------------------------------------------------------------------- /src/core/src/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/src/core/src/core/__init__.py -------------------------------------------------------------------------------- /src/core/src/core/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/src/core/src/core/cli.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scripts/test_this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/tests/scripts/test_this.py -------------------------------------------------------------------------------- /tests/shared/utils/test_return_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/tests/shared/utils/test_return_one.py -------------------------------------------------------------------------------- /tests/src/core/test_return_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/tests/src/core/test_return_two.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperHG90/uv-monorepo/HEAD/uv.lock --------------------------------------------------------------------------------