-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (87 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
93 lines (87 loc) · 1.77 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "seedboxsync"
description = "Script for sync operations between your NAS and your seedbox"
dynamic = ["version"]
authors = [
{ name = "Guillaume Kulakowski", email = "guillaume@kulakowski.fr" }
]
keywords = [
"seedbox",
"nas",
"sync",
"ftp",
"sftp",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"Topic :: Internet",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Natural Language :: English",
"Operating System :: POSIX"
]
readme = "README.md"
license-files = ["LICENSE"]
license = "GPL-3.0-only"
requires-python = ">=3.10"
dependencies = [
"cement>=3.0.14",
"pyyaml>=6.0.2",
"colorlog>=6.9.0",
"paramiko>=3.5.1",
"ftputil>=5.1.0",
"bcoding",
"tabulate>=0.9.0",
"humanize>=4.12.1",
"peewee>=3.17.7",
"typing-extensions>=4.13.2"
]
[project.urls]
Home = "https://llaumgui.github.io/seedboxsync/"
Documentation = "https://llaumgui.github.io/seedboxsync/"
Source = "https://github.com/llaumgui/seedboxsync/"
[project.optional-dependencies]
dev = [
"flake8",
"pytest",
"pytest-cov",
"coverage",
"flit",
"mypy",
"twine",
"cement[cli]",
"mkdocs-material",
]
[project.scripts]
seedboxsync = "seedboxsync.main:main"
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[tool.flit.sdist]
include = [
"config/seedboxsync.yml.example",
"README.md",
"LICENSE"
]
exclude = [
".github/**",
"docker/**",
"doc/**",
"logo/**",
"tests/**",
".dockerignore",
".editorconfig",
".flake8",
".gitignore",
".hadolint.yaml",
".markdownlint.yaml",
"Dockerfile",
"Makefile",
"sonar-project.properties",
]
[tool.mypy]
files = ["seedboxsync"]
ignore_missing_imports = true
strict = true
show_error_codes = true