2018-11-01 05:11:37 +00:00
|
|
|
[metadata]
|
|
|
|
name = vorta
|
|
|
|
author = Manuel Riel
|
|
|
|
description = A GUI for BorgBackup
|
2019-06-20 12:02:08 +00:00
|
|
|
version = 0.6.21
|
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)
|
|
|
|
Programming Language :: Python :: 3.6
|
|
|
|
Programming Language :: Python :: 3.7
|
|
|
|
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
|
|
|
|
|
|
|
|
[options]
|
|
|
|
python_requires = >= 3.6
|
|
|
|
setup_requires =
|
|
|
|
pip >= 10
|
|
|
|
pytest-runner
|
|
|
|
setuptools_git
|
|
|
|
install_requires =
|
|
|
|
appdirs
|
|
|
|
paramiko
|
|
|
|
pyqt5
|
|
|
|
peewee
|
|
|
|
python-dateutil
|
2018-11-02 15:46:14 +00:00
|
|
|
apscheduler
|
2018-11-22 04:06:10 +00:00
|
|
|
psutil
|
2019-01-24 02:05:15 +00:00
|
|
|
qdarkstyle
|
2019-04-14 06:40:29 +00:00
|
|
|
setuptools
|
2019-03-06 01:37:12 +00:00
|
|
|
secretstorage; sys_platform != 'darwin'
|
2018-11-21 06:03:39 +00:00
|
|
|
pyobjc-core; sys_platform == 'darwin'
|
2018-11-09 06:01:16 +00:00
|
|
|
pyobjc-framework-Cocoa; sys_platform == 'darwin'
|
2018-12-06 09:41:22 +00:00
|
|
|
pyobjc-framework-LaunchServices; sys_platform == 'darwin'
|
2018-11-03 08:55:38 +00:00
|
|
|
tests_require =
|
2018-11-01 05:11:37 +00:00
|
|
|
pytest
|
|
|
|
pytest-qt
|
|
|
|
pytest-mock
|
2018-11-20 10:06:18 +00:00
|
|
|
pytest-xdist
|
2018-11-01 06:01:44 +00:00
|
|
|
pytest-faulthandler
|
2018-11-01 05:11:37 +00:00
|
|
|
|
|
|
|
[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
|
|
|
|
2018-10-30 17:46:37 +00:00
|
|
|
[tool:pytest]
|
2018-11-20 10:06:18 +00:00
|
|
|
addopts = --forked -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]
|
|
|
|
source = src
|
|
|
|
|
2018-11-22 00:40:57 +00:00
|
|
|
[flake8]
|
2018-11-22 20:21:52 +00:00
|
|
|
ignore =
|
2018-11-22 02:18:03 +00:00
|
|
|
max-line-length = 120
|
2019-01-06 00:22:11 +00:00
|
|
|
exclude =
|
|
|
|
build,dist,.git,.idea,.cache,.tox,.eggs,
|
2019-01-24 02:05:15 +00:00
|
|
|
./src/vorta/views/dark/collection_rc.py,
|
|
|
|
./src/vorta/views/light/collection_rc.py
|
2018-11-22 00:40:57 +00:00
|
|
|
|
2018-10-30 17:46:37 +00:00
|
|
|
[tox:tox]
|
2018-12-04 02:58:12 +00:00
|
|
|
envlist = py36,py37,flake8
|
|
|
|
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-22 02:23:40 +00:00
|
|
|
pytest-xdist
|
2018-11-05 10:30:59 +00:00
|
|
|
pytest-faulthandler
|
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
|
|
|
|
|
|
|
[testenv:flake8]
|
|
|
|
deps =
|
|
|
|
flake8
|
|
|
|
commands=flake8 src tests
|