File: setup.cfg

package info (click to toggle)
vorta 0.10.3-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 5,684 kB
  • sloc: python: 11,548; makefile: 89; xml: 63; sh: 51
file content (102 lines) | stat: -rw-r--r-- 2,425 bytes parent folder | download
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
94
95
96
97
98
99
100
101
102
[metadata]
name = vorta
author = Manuel Riel and Vorta contributors
description = A GUI for Borg Backup
version = attr: vorta._version.__version__
url = https://github.com/borgbase/vorta
keywords =
  backup
  borgbackup
# List of classifiers: https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers =
  Development Status :: 4 - Beta
  Environment :: MacOS X
  Environment :: X11 Applications :: Qt
  Operating System :: MacOS
  Operating System :: POSIX
  License :: OSI Approved :: GNU General Public License v3 (GPLv3)
  Programming Language :: Python :: 3
  Topic :: System :: Archiving :: Backup
  Topic :: System :: Systems Administration
  Topic :: Utilities
long_description = file: README.md
long_description_content_type = text/markdown
license_file = LICENSE.txt
project_urls =
    Bug Tracker = https://github.com/borgbase/vorta/issues
    Documentation = https://docs.borgbase.com
    Source Code = https://github.com/borgbase/vorta

[options]
packages = find:
package_dir =
    =src
include_package_data = true
python_requires = >=3.8
setup_requires =
  setuptools
install_requires =
  packaging
  peewee
  platformdirs >=2.6.0, <5.0.0; sys_platform != 'darwin'  # for others: 2.6+ works consistently.
  platformdirs >=3.0.0, <5.0.0; sys_platform == 'darwin'  # for macOS: breaking changes in 3.0.0,
  psutil
  pyobjc-core < 10; sys_platform == 'darwin'
  pyobjc-framework-Cocoa < 10; sys_platform == 'darwin'
  pyobjc-framework-CoreWLAN < 10; sys_platform == 'darwin'
  pyobjc-framework-LaunchServices < 10; sys_platform == 'darwin'
  pyqt6
  secretstorage; sys_platform != 'darwin'
tests_require =
  pytest
  pytest-qt
  pytest-mock

[options.entry_points]
gui_scripts =
  vorta = vorta.__main__:main

[options.packages.find]
where=src

[tool:pytest]
addopts = -vs
testpaths = tests
qt_default_raising = true
filterwarnings =
    ignore::DeprecationWarning

[coverage:run]
source = vorta
omit = tests/*
relative_files = true

[tox:tox]
envlist = py36,py37,py38
skip_missing_interpreters = true

[testenv]
deps =
    pytest
    pytest-qt
    pytest-mock
commands=pytest
passenv = DISPLAY

[testenv:ruff]
deps =
    ruff
commands=ruff check src tests

[pycodestyle]
max_line_length = 120

[pylint.master]
extension-pkg-whitelist=PyQt6
load-plugins=

[pylint.messages control]
disable= W0511,C0301,R0903,W0212,C0114,C0115,C0116,C0103,E0611,E1120,C0415,R0914,R0912,R0915

[pylint.format]
max-line-length=120