19 lines
415 B
TOML
19 lines
415 B
TOML
[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"
|