-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.02 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
[build-system]
requires = ["poetry>=1.8"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 96
target-version = ['py312']
[tool.poetry]
name = "sebsync"
version = "1.0.5"
description = "Synchronize Standard Ebooks catalog with local EPUB collection."
readme = "README.md"
authors = ["sebsync authors"]
homepage = "https://github.com/pbryan/sebsync/"
license = "MIT"
keywords = ["standard", "ebook", "book", "synchronization", "sync", "download"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Topic :: System :: Archiving :: Mirroring",
]
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1"
requests = "^2.32"
[tool.poetry.dev-dependencies]
black = "^24.10"
isort = "^5.13"
pre-commit = "^4.0"
pytest = "^8.3"
pytest-cov = "^6.0"
[tool.isort]
profile = "black"
lexicographical = true
lines_after_imports = 2
lines_between_types = 1
line_length = 96
no_sections = true
[tool.poetry.scripts]
sebsync = "sebsync:main"