2018-11-01 05:11:37 +00:00
|
|
|
[metadata]
|
|
|
|
name = vorta
|
2020-09-10 05:26:38 +00:00
|
|
|
author = Manuel Riel and Vorta contributors
|
|
|
|
description = A GUI for Borg Backup
|
|
|
|
version = attr: vorta._version.__version__
|
2018-11-01 05:11:37 +00:00
|
|
|
url = https://github.com/borgbase/vorta
|
|
|
|
keywords =
|
|
|
|
backup
|
|
|
|
borgbackup
|
2019-01-15 15:20:24 +00:00
|
|
|
# List of classifiers: https://pypi.org/pypi?%3Aaction=list_classifiers
|
2018-11-01 05:11:37 +00:00
|
|
|
classifiers =
|
2019-01-15 15:20:24 +00:00
|
|
|
Development Status :: 4 - Beta
|
2018-11-01 05:11:37 +00:00
|
|
|
Environment :: MacOS X
|
|
|
|
Environment :: X11 Applications :: Qt
|
|
|
|
Operating System :: MacOS
|
|
|
|
Operating System :: POSIX
|
|
|
|
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
2024-10-20 13:04:25 +00:00
|
|
|
Programming Language :: Python :: 3
|
2018-11-01 05:11:37 +00:00
|
|
|
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
|
2021-01-20 04:59:37 +00:00
|
|
|
project_urls =
|
|
|
|
Bug Tracker = https://github.com/borgbase/vorta/issues
|
|
|
|
Documentation = https://docs.borgbase.com
|
|
|
|
Source Code = https://github.com/borgbase/vorta
|
2018-11-01 05:11:37 +00:00
|
|
|
|
|
|
|
[options]
|
2021-12-24 10:16:52 +00:00
|
|
|
packages = find:
|
|
|
|
package_dir =
|
|
|
|
=src
|
|
|
|
include_package_data = true
|
2023-04-29 11:26:01 +00:00
|
|
|
python_requires = >=3.8
|
2018-11-01 05:11:37 +00:00
|
|
|
install_requires =
|
2024-10-20 13:04:25 +00:00
|
|
|
packaging
|
2018-11-01 05:11:37 +00:00
|
|
|
peewee
|
2024-10-20 13:04:25 +00:00
|
|
|
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,
|
2018-11-22 04:06:10 +00:00
|
|
|
psutil
|
2024-11-10 09:43:48 +00:00
|
|
|
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'
|
2024-10-20 13:04:25 +00:00
|
|
|
pyqt6
|
|
|
|
secretstorage; sys_platform != 'darwin'
|
|
|
|
setuptools
|
2018-11-03 08:55:38 +00:00
|
|
|
tests_require =
|
2018-11-01 05:11:37 +00:00
|
|
|
pytest
|
|
|
|
pytest-qt
|
|
|
|
pytest-mock
|
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
gui_scripts =
|
2018-11-02 15:46:14 +00:00
|
|
|
vorta = vorta.__main__:main
|
2018-11-01 05:11:37 +00:00
|
|
|
|
2021-12-24 10:16:52 +00:00
|
|
|
[options.packages.find]
|
|
|
|
where=src
|
|
|
|
|
2018-10-30 17:46:37 +00:00
|
|
|
[tool:pytest]
|
2020-03-03 05:19:36 +00:00
|
|
|
addopts = -vs
|
2018-11-01 05:11:37 +00:00
|
|
|
testpaths = tests
|
2018-10-30 17:46:37 +00:00
|
|
|
qt_default_raising = true
|
|
|
|
filterwarnings =
|
|
|
|
ignore::DeprecationWarning
|
|
|
|
|
2018-11-01 16:53:41 +00:00
|
|
|
[coverage:run]
|
2021-01-20 04:59:37 +00:00
|
|
|
source = vorta
|
|
|
|
omit = tests/*
|
|
|
|
relative_files = true
|
2018-11-01 16:53:41 +00:00
|
|
|
|
2018-10-30 17:46:37 +00:00
|
|
|
[tox:tox]
|
2024-10-18 11:08:59 +00:00
|
|
|
envlist = py36,py37,py38
|
2018-12-04 02:58:12 +00:00
|
|
|
skip_missing_interpreters = true
|
2018-11-02 15:46:14 +00:00
|
|
|
|
2018-11-05 10:30:59 +00:00
|
|
|
[testenv]
|
|
|
|
deps =
|
|
|
|
pytest
|
|
|
|
pytest-qt
|
|
|
|
pytest-mock
|
2018-11-02 15:46:14 +00:00
|
|
|
commands=pytest
|
2018-12-04 02:58:12 +00:00
|
|
|
passenv = DISPLAY
|
2018-11-22 00:40:57 +00:00
|
|
|
|
2024-10-18 11:08:59 +00:00
|
|
|
[testenv:ruff]
|
2018-11-22 00:40:57 +00:00
|
|
|
deps =
|
2024-10-18 11:08:59 +00:00
|
|
|
ruff
|
|
|
|
commands=ruff check src tests
|
2020-03-03 05:19:36 +00:00
|
|
|
|
|
|
|
[pycodestyle]
|
|
|
|
max_line_length = 120
|
|
|
|
|
|
|
|
[pylint.master]
|
2023-04-17 10:17:01 +00:00
|
|
|
extension-pkg-whitelist=PyQt6
|
2020-03-03 05:19:36 +00:00
|
|
|
load-plugins=
|
|
|
|
|
|
|
|
[pylint.messages control]
|
2024-10-20 13:04:25 +00:00
|
|
|
disable= W0511,C0301,R0903,W0212,C0114,C0115,C0116,C0103,E0611,E1120,C0415,R0914,R0912,R0915
|
2020-03-03 05:19:36 +00:00
|
|
|
|
|
|
|
[pylint.format]
|
|
|
|
max-line-length=120
|