diff options
| author | Baitinq <[email protected]> | 2025-10-19 17:35:42 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-10-19 17:35:51 +0200 |
| commit | e7ca64f954c4ae0593ef64fcf1fb929a22e813d8 (patch) | |
| tree | a1f57e87b5ac4ef2ef4cef3b97e0bc922b50f935 | |
| download | agent-e7ca64f954c4ae0593ef64fcf1fb929a22e813d8.tar.gz agent-e7ca64f954c4ae0593ef64fcf1fb929a22e813d8.tar.bz2 agent-e7ca64f954c4ae0593ef64fcf1fb929a22e813d8.zip | |
Initial commit
| -rw-r--r-- | .envrc | 1 | ||||
| -rw-r--r-- | .gitignore | 12 | ||||
| -rw-r--r-- | .python-version | 1 | ||||
| -rw-r--r-- | README.md | 0 | ||||
| -rw-r--r-- | flake.lock | 61 | ||||
| -rw-r--r-- | flake.nix | 27 | ||||
| -rw-r--r-- | main.py | 6 | ||||
| -rw-r--r-- | pyproject.toml | 7 | ||||
| -rw-r--r-- | uv.lock | 8 |
9 files changed, 123 insertions, 0 deletions
diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..3550a30 --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use flake diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3be57d4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv + +.direnv/ 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/README.md b/README.md new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/README.md diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..5b83b57 --- /dev/null +++ b/flake.lock @@ -0,0 +1,61 @@ +{ + "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1760524057, + "narHash": "sha256-EVAqOteLBFmd7pKkb0+FIUyzTF61VKi7YmvP1tw4nEw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "544961dfcce86422ba200ed9a0b00dd4b1486ec5", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..f5bb410 --- /dev/null +++ b/flake.nix @@ -0,0 +1,27 @@ +{ + description = "LaunchProbe Devshell"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = { self, nixpkgs, flake-utils, ... }: + flake-utils.lib.eachDefaultSystem (system: + let + pkgs = import nixpkgs { + inherit system; + config.allowUnfree = true; + }; + in + with pkgs; + { + devShells.default = mkShell { + buildInputs = [ + python3 + python3Packages.uv + ]; + }; + } + ); +} diff --git a/main.py b/main.py new file mode 100644 index 0000000..ce755d5 --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from agent!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..df5dc10 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "agent" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [] diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..6502aee --- /dev/null +++ b/uv.lock @@ -0,0 +1,8 @@ +version = 1 +revision = 3 +requires-python = ">=3.13" + +[[package]] +name = "agent" +version = "0.1.0" +source = { virtual = "." } |