vorta/setup.cfg

104 lines
2.1 KiB
INI
Raw Normal View History

2018-11-01 05:11:37 +00:00
[metadata]
name = vorta
author = Manuel Riel
description = A GUI for BorgBackup
2020-09-06 06:45:41 +00:00
version = 0.7.0
2018-11-01 05:11:37 +00:00
url = https://github.com/borgbase/vorta
keywords =
backup
borgbackup
# List of classifiers: https://pypi.org/pypi?%3Aaction=list_classifiers
2018-11-01 05:11:37 +00:00
classifiers =
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
2018-11-01 05:11:37 +00:00
peewee
python-dateutil
2018-11-02 15:46:14 +00:00
apscheduler
psutil
setuptools
secretstorage; sys_platform != 'darwin'
2018-11-21 06:03:39 +00:00
pyobjc-core; sys_platform == 'darwin'
pyobjc-framework-Cocoa; sys_platform == 'darwin'
pyobjc-framework-LaunchServices; sys_platform == 'darwin'
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
[tool:pytest]
addopts = -vs
2018-11-01 05:11:37 +00:00
testpaths = tests
qt_default_raising = true
filterwarnings =
ignore::DeprecationWarning
[coverage:run]
source = src
[flake8]
2018-11-22 20:21:52 +00:00
ignore =
2018-11-22 02:18:03 +00:00
max-line-length = 120
exclude =
build,dist,.git,.idea,.cache,.tox,.eggs,
./src/vorta/views/dark/collection_rc.py,
./src/vorta/views/light/collection_rc.py
[tox:tox]
envlist = py36,py37,py38,flake8
skip_missing_interpreters = true
2018-11-02 15:46:14 +00:00
[testenv]
deps =
pytest
pytest-qt
pytest-mock
2018-11-02 15:46:14 +00:00
commands=pytest
passenv = DISPLAY
[testenv:flake8]
deps =
flake8
commands=flake8 src tests
[pycodestyle]
max_line_length = 120
[pylint.master]
extension-pkg-whitelist=PyQt5
load-plugins=
ignore=
collection_rc.py
[pylint.messages control]
disable= W0511,C0301,R0903,R0201,W0212,C0114,C0115,C0116,C0103,E0611,E1120,C0415,R0914,R0912,R0915
[pylint.format]
max-line-length=120