feat: initial commit
This commit is contained in:
commit
7183e36b26
9 changed files with 186 additions and 0 deletions
5
example/default.nix
Normal file
5
example/default.nix
Normal 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
7
example/poetry.lock
generated
Normal 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
7
example/poetry.toml
Normal 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
27
example/pyproject.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue