-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (39 loc) · 966 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "remarkdav"
version = "1.0.3"
description = "A tool to sync webdav files (only PDF) to the reMarkable cloud"
authors = ["Jonathan Weth <[email protected]>"]
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.7"
dynaconf = "^3.1.2"
click = ">=7.1.2,<9.0.0"
webdavclient3 = "^3.14.5"
dateparser = "^1.0.0"
peewee = "^3.14.0"
rmapy = ">=0.2.2,<0.4.0"
fpdf = "^1.7.2"
PyPDF2 = ">=1.26,<3.0"
[tool.poetry.dev-dependencies]
tox = "^3.25.1"
pytest = "^7.1"
safety = "^2.2.0"
flake8 = "^4.0.1"
flake8-fixme = "^1.1.1"
flake8-mypy = "^17.8.0"
flake8-bandit = "^3.0.0"
flake8-builtins = "^1.4.1"
flake8-docstrings = "^1.6.0"
flake8-rst-docstrings = "^0.2.7"
black = "^22.6"
isort = "^5.9.3"
flake8-isort = "^4.2.0"
pytest-cov = "^3.0.0"
pytest-sugar = "^0.9.5"
[tool.poetry.scripts]
remarkdav = 'remarkdav.cli:cli'
[tool.black]
line-length = 100
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"