-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
66 lines (59 loc) · 1.46 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "remarking"
version = "0.1.4"
description = "Extract highlights from your ReMarkable tablet."
authors = ["sabidib <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
homepage = "https://remarking.readthedocs.io/en/latest/"
repository = "https://www.github.com/sabidib/remarking"
documentation = "https://remarking.readthedocs.io/en/latest/"
keywords = [
"highlight",
"remarkable-tablet",
"extract",
"annotate workflow"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.7"
SQLAlchemy = "^1.4.20"
python-dateutil = "^2.8.1"
rmapy = "^0.3.1"
click = "^8.0.1"
halo = "^0.0.31"
tabulate = "^0.8.9"
click-help-colors = "^0.9.1"
Sphinx = { version="^4.1.1", optional=true}
furo = { version="^2021.7.5-beta.38", optional=true}
[tool.poetry.scripts]
remarking = 'remarking.cli.cli:command_line'
[tool.poetry.dev-dependencies]
SQLAlchemy = {extras = ["mypy"], version = "^1.4.20"}
GitPython = "^3.1.18"
autopep8 = "^1.5.7"
pytest = "^6.2.4"
pytest-unordered = "^0.4.1"
pylint-pytest = "^1.1.2"
pytest-cov = "^2.12.1"
types-requests = "^2.25.0"
types-python-dateutil = "^0.1.4"
pylint = "^2.9.3"
mypy = "^0.910"
types-tabulate = "^0.1.1"
autoflake = "^1.4"
colorama = "^0.4.4"
[tool.poetry.extras]
docs = [
"furo",
"Sphinx"
]
[build-system]
requires = [
"poetry-core>=1.0.0"
]
build-backend = "poetry.core.masonry.api"