Initial commit

This commit is contained in:
2025-06-14 09:40:55 -04:00
commit ae05facc86
6 changed files with 1577 additions and 0 deletions

24
pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "awam"
version = "0.1.0"
description = "An ActivityWatch watcher that logs the tracked Amazing Marvin task."
authors = ["Felix Martin"]
readme = "README.md"
packages = [{include = "awam", from = "src"}]
[tool.poetry.dependencies]
python = "^3.8"
aw-client = "*"
aw-core = "*"
requests = "*"
keyring = "*"
[tool.poetry.group.dev.dependencies]
pre-commit = "*"
[tool.poetry.scripts]
awam = "awam.__main__:main"