2023-09-22 09:52:21 +02:00
|
|
|
# SPDX-FileCopyrightText: 2023 Max Mehl <https://mehl.mx>
|
|
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
2023-09-21 17:20:55 +02:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "seafile-mirror"
|
2024-01-16 17:03:01 +01:00
|
|
|
version = "0.2.0"
|
2023-09-21 17:20:55 +02:00
|
|
|
description = "Handle clean read-only (re-)syncs of Seafile libraries to mirror them"
|
|
|
|
|
authors = ["Max Mehl <mail@mehl.mx>"]
|
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
repository = "https://src.mehl.mx/mxmehl/seafile-mirror"
|
|
|
|
|
packages = [{ include = "seafile_mirror" }]
|
|
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
|
seafile-mirror = 'seafile_mirror.seafile_mirror:main'
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
|
python = "^3.10"
|
|
|
|
|
pyyaml = "^6.0.1"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-01-15 16:06:14 +00:00
|
|
|
pylint = "^3.0.0"
|
2023-09-21 17:20:55 +02:00
|
|
|
isort = "^5.12.0"
|
2024-01-26 23:02:51 +00:00
|
|
|
black = "^24.0.0"
|
2023-09-21 17:20:55 +02:00
|
|
|
mypy = "^1.5.1"
|
|
|
|
|
pylama = "^8.4.1"
|
|
|
|
|
types-pyyaml = "^6.0.12.11"
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
|
|
# FORMATTING settings
|
|
|
|
|
[tool.isort]
|
|
|
|
|
profile = "black"
|
|
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
|
line-length = 100
|
|
|
|
|
|
|
|
|
|
# MYPY settings
|
|
|
|
|
[tool.mypy]
|
|
|
|
|
files = ["seafile_mirror/*.py"]
|