renamed source directory

This commit is contained in:
Kristian Krsnik 2023-10-13 15:20:28 +02:00
parent 994481e7fe
commit 113ec3130c
Signed by: Kristian
GPG Key ID: FD1330AC9F909E85
4 changed files with 5 additions and 3 deletions

View File

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

View File

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