Add deployment through poetry to travis

This commit is contained in:
Manuel Ebert 2019-07-07 20:41:31 -07:00
parent d51225da0f
commit 06a106312f
6 changed files with 165 additions and 132 deletions

View file

@ -13,30 +13,26 @@ homepage = "https://jrnl.sh"
repository = "https://github.com/jrnl-org/jrnl"
[tool.poetry.dependencies]
python = "^2.7.9"
python = "^3.7"
pyxdg = "^0.26.0"
cryptography = "^2.7"
passlib = "^1.7"
parsedatetime = ">=1.5"
keyring = [
{version = "<=18.0", python = "^2.7"},
{version = "^19.0", python = "^3.3"}
]
python-dateutil = [
{version = "<=1.5", python = "^2.7"},
{version = "^2.2", python = "^3.3"}
]
parsedatetime = "^2.4"
keyring = "^19.0"
pytz = "^2019.1"
tzlocal = "^1.5"
asteval = "^0.9.14"
colorama = {version = "^0.4.1",platform = "win32"}
python-dateutil = "^2.8"
[tool.poetry.dev-dependencies]
behave = "^1.2"
mkdocs = "^1.0"
flake8 = "^3.7"
black = {version = "^18.3-alpha.0",allows-prereleases = true}
[tool.poetry.scripts]
jrnl = 'jrnl:cli.run'
jrnl = 'jrnl.cli:run'
[build-system]
requires = ["poetry>=0.12"]