feat: initial commit

This commit is contained in:
Moritz Böhme 2024-01-14 14:23:18 +01:00
commit 7183e36b26
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
9 changed files with 186 additions and 0 deletions

5
example/default.nix Normal file
View file

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> { } }:
let
lib = import ../lib.nix { inherit pkgs; };
in
lib.genNetrc { projectDir = ./.; }

7
example/poetry.lock generated Normal file
View file

@ -0,0 +1,7 @@
# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand.
package = []
[metadata]
lock-version = "2.0"
python-versions = "^3.11"
content-hash = "8ebb161448cb827b31357cc68b7c8ada8dd31f9185cc957d9ccedf69ecb28673"

7
example/poetry.toml Normal file
View file

@ -0,0 +1,7 @@
[http-basic.foo]
username = "foo"
password = "bar"
[http-basic.foo2]
username = "foo2"
password = "bar2"

27
example/pyproject.toml Normal file
View file

@ -0,0 +1,27 @@
[tool.poetry]
name = "example"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
[[tool.poetry.source]]
name = "foo"
url = "https://foo.bar/simple/"
priority = "primary"
[[tool.poetry.source]]
name = "foo2"
url = "https://foo2.bar/simple/"
priority = "primary"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"