initial commit

This commit is contained in:
Noa Aarts 2025-12-12 13:42:34 +01:00
commit e9cf83145f
Signed by: noa
GPG key ID: 1850932741EFF672
7 changed files with 74 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use flake . -L

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.direnv

4
README.md Normal file
View file

@ -0,0 +1,4 @@
= QAS Flow
A library to easily chain various filters, proxies etcetera. Mainly intended to be used in
Quantum Architecture Search.

27
flake.lock generated Normal file
View file

@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1765186076,
"narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

30
flake.nix Normal file
View file

@ -0,0 +1,30 @@
{
description = "Python development shell for work- and research-related stuff.";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs =
{
self,
nixpkgs,
...
}@inputs:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
buildInputs = with pkgs; [
(python312.withPackages (
python-pkgs: with python-pkgs; [
numpy
setuptools
]
))
];
};
};
}

11
pyproject.toml Normal file
View file

@ -0,0 +1,11 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "qas-flow"
version = "0.0.1"
dependencies = [
"numpy",
]

0
qas-flow/__init__.py Normal file
View file