File pyproject.toml of Package failed_jrnl
[build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] name = "jrnl" version = "4.1" description = "A simple journaling application" authors = ["jrnl maintainers <maintainers@jrnl.org>"] readme = "README.md" license = "MIT" homepage = "https://github.com/jrnl-org/jrnl" repository = "https://github.com/jrnl-org/jrnl" keywords = ["journal", "diary", "cli"] [tool.poetry.dependencies] # Allow Python 3.10 and newer, including 3.13 builds present on the build host. # Relaxed from "<3.13" to "<3.14" so the package can be built with Python 3.13. python = ">=3.10,<3.14" python-dateutil = "^2.8" PyYAML = "^6.0" requests = "^2.31" tzlocal = "^5.0" [tool.poetry.group.dev.dependencies] pytest = "^7.0" black = "^24.0" [tool.poetry.scripts] jrnl = "jrnl.cli:main"