-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (33 loc) · 971 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
[project]
name = "sebsync"
version = "1.0.10"
description = "Synchronize Standard Ebooks catalog with local EPUB collection."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [ "click", "requests" ]
keywords = ["standard", "ebook", "book", "synchronization", "sync", "download"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: Zero-Clause BSD (0BSD)",
"Intended Audience :: End Users/Desktop",
"Topic :: System :: Archiving :: Mirroring",
]
[[project.authors]]
name = "Sebsync authors"
[project.scripts]
sebsync = "sebsync:main"
[project.urls]
Repository = "https://github.com/pbryan/sebsync/"
[dependency-groups]
dev = [ "pytest", "ruff" ]
[build-system]
requires = [ "hatchling" ]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 96
target-version = "py313"
[tool.ruff.lint.isort]
no-sections = true
lines-after-imports = 2
lines-between-types = 1