jrnl/pyproject.toml
micahellison ebba342779
Add support for Python 3.9 and fix 3.9 build (#1054)
* Support Python 3.9 release in build instead of using 3.9 beta
* Revert Linux and Mac 3.9 definitions since release versions are not working on either
* Run poetry update
* Try out Python 3.10 support on all platforms with allow_failures on
* Adding c:\Python310 path reference for Python 3.10 Windows build
* Clean up unnecessary TOML modification in 3.9 build and always upgrade pyenv in Mac builds
* Clean up unnecessary before_install step on Mac and change 3.9-dev->3.9 definition on Linux
* Reverting Linux Python version to 3.9-dev so that it will run
2020-10-10 17:33:08 -07:00

55 lines
1.2 KiB
TOML

[tool.poetry]
name = "jrnl"
version = "v2.4.5"
description = "Collect your thoughts and notes without leaving the command line."
authors = [
"Manuel Ebert <manuel@1450.me>",
"Jonathan Wren <jonathan@nowandwren.com>",
"Micah Ellison <micahellison@gmail.com>"
]
maintainers = [
"Jonathan Wren and Micah Ellison <jrnl-sh@googlegroups.com>",
]
license = "GPL-3.0-only"
readme = "README.md"
homepage = "https://jrnl.sh"
repository = "https://github.com/jrnl-org/jrnl"
[tool.poetry.dependencies]
python = ">=3.7.0, <3.10.0"
pyxdg = "^0.26.0"
cryptography = "^3.0"
passlib = "^1.7"
parsedatetime = "^2.4"
keyring = ">19.0, <22.0"
pytz = ">=2019.1, <2021.0"
tzlocal = ">1.5, <3.0"
asteval = "^0.9.14"
colorama = "^0.4.1"
python-dateutil = "^2.8"
pyyaml = "^5.1"
ansiwrap = "^0.8.4"
packaging = "^20.4"
[tool.poetry.dev-dependencies]
behave = "^1.2"
mkdocs = "^1.0"
black = {version = "^19.10b0",allow-prereleases = true}
toml = "^0.10.0"
pyflakes = "^2.2.0"
pytest = "^5.4.3"
[tool.poetry.scripts]
jrnl = 'jrnl.cli:cli'
[tool.isort]
multi_line_output = 7
force_single_line = true
line_length = 88
known_first_party = ["jrnl"]
force_sort_within_sections = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"