Clean arch

This commit is contained in:
Artem Kokos
2026-01-19 23:13:02 +07:00
parent a191ba3a8f
commit d1b1648940
9 changed files with 217 additions and 152 deletions

18
pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "redmine-reporter"
version = "0.1.0"
description = "Redmine time-based issue reporter"
authors = [{name = "Artem Kokos"}]
requires-python = ">=3.8"
dependencies = [
"python-redmine>=2.4.0",
"tabulate>=0.9.0",
"PyYAML>=6.0"
]
[project.scripts]
redmine-report = "redmine_reporter.cli:main"