renamed source directory

This commit is contained in:
Kristian Krsnik 2023-10-13 14:58:58 +02:00
parent cfeb253cac
commit 6e44ec4935
Signed by: Kristian
GPG Key ID: FD1330AC9F909E85
4 changed files with 5 additions and 3 deletions

View File

@ -18,7 +18,9 @@
# `nix build` # `nix build`
packages = forAllSystems (system: { packages = forAllSystems (system: {
default = pkgs.${system}.poetry2nix.mkPoetryApplication {projectDir = self;}; default = pkgs.${system}.poetry2nix.mkPoetryApplication {
projectDir = self;
};
}); });
# `nix develop` # `nix develop`

View File

@ -4,14 +4,14 @@ version = "0.1.0"
description = "A DNS updater" description = "A DNS updater"
authors = ["Kristian Krsnik <git@krsnik.at>"] authors = ["Kristian Krsnik <git@krsnik.at>"]
readme = "README.md" readme = "README.md"
packages = [{ include = "dyn_gandi" }] packages = [{ include = "src" }]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.10" python = "^3.10"
requests = "2.29.0" requests = "2.29.0"
[tool.poetry.scripts] [tool.poetry.scripts]
dyn-gandi = "dyn_gandi.main:main" dyn-gandi = "src.main:main"
[build-system] [build-system]
requires = ["poetry-core"] requires = ["poetry-core"]