source: flowtimer/pyproject.toml@ 8f41b95

guix
Last change on this file since 8f41b95 was 58e7315, checked in by Enrico Schwass <ennoausberlin@…>, 9 months ago

support for color scheme added

  • Property mode set to 100644
File size: 609 bytes
Line 
1[build-system]
2requires = ["poetry-core>=1.0.7"]
3build-backend = "poetry.core.masonry.api"
4
5[tool.poetry]
6name = "flowtimer"
7version = "0.0.1"
8description = "A package to time work slices"
9authors = ["See Contributors"]
10homepage = "https://kokyou.org:8080/playground/browser/flowtimer"
11repository = "https://kokyou.org:/srv/git/flowtimer.git"
12license = "MIT"
13readme = "README.md"
14packages = [
15 { include = "flowtimer" }
16]
17
18include = [
19 {path = 'tests/*.py'},
20 {path = 'flowtimer_logger.conf'}
21]
22[tool.poetry.scripts]
23flowtimer = 'flowtimer.main:main'
24
25[tool.poetry.dependencies]
26pillow = "~9.2.0"
Note: See TracBrowser for help on using the repository browser.