-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.29 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "readwise-reader-cli"
description = "Engage with your Readwise Reader library through your command-line."
readme = "README.md"
authors = [{name = "Scott Carvalho", email = "scottcarvalho71@gmail.com"}]
license = { file = "LICENSE" }
dynamic = ["version"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
keywords = ["api", "readwise", "cli", "python"]
dependencies = [
"click >= 8.1.3",
"python-dateutil",
"requests",
"beautifulsoup4",
"python-dotenv",
"xdg-base-dirs",
"rich",
"pydantic"
]
requires-python = ">=3.8"
[project.optional-dependencies]
test = [
"pre-commit",
"pytest",
]
dev = [
"black",
"isort",
]
[project.urls]
Homepage = "https://github.com/Scarvy/readwise-reader-cli"
[project.scripts]
calc = "readercli.__main__:cli"
[tool.flit.sdist]
exclude = [
"tests/resources/",
]
[tool.flit.module]
name = "readercli"