vorta/setup.cfg

95 lines
1.9 KiB
INI

[metadata]
name = vorta
author = Manuel Riel
description = A GUI for BorgBackup
version = 0.4.5
url = https://github.com/borgbase/vorta
keywords =
backup
borgbackup
classifiers =
Development Status :: 3 - Alpha
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
keyring
apscheduler
sentry-sdk
pyobjc-core; sys_platform == 'darwin'
pyobjc-framework-Cocoa; sys_platform == 'darwin'
tests_require =
pytest
pytest-qt
pytest-mock
pytest-xdist
pytest-faulthandler
[options.entry_points]
gui_scripts =
vorta = vorta.__main__:main
[tool:pytest]
addopts = --forked -vs
testpaths = tests
qt_default_raising = true
filterwarnings =
ignore::DeprecationWarning
[coverage:run]
source = src
[mypy]
ignore_missing_imports = true
[flake8]
# please note that the values are adjusted so that they do not cause failures
# with existing code. if you want to change them, you should first fix all
# flake8 failures that appear with your change.
ignore =
W503,
F401,F821,F841,
E712
# line length long term target: 120
max-line-length = 150
exclude = build,dist,.git,.idea,.cache,.tox
[tox:tox]
envlist = py36,flake8
[testenv]
deps =
pytest
pytest-qt
pytest-mock
pytest-faulthandler
commands=pytest
[testenv:flake8]
deps =
flake8
commands=flake8 src tests