-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.cfg
84 lines (76 loc) · 1.58 KB
/
setup.cfg
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
[metadata]
name = restatic
author = Manuel Riel
description = A GUI for BorgBackup
version = 0.1.2
url = https://github.com/borgbase/restatic
keywords =
backup
restic
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
psutil
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 =
restatic = restatic.__main__:main
[tool:pytest]
addopts = --forked
testpaths = tests
qt_default_raising = true
filterwarnings =
ignore::DeprecationWarning
[coverage:run]
source = src
[flake8]
ignore = W503
max-line-length = 120
exclude = build,dist,.git,.idea,.cache,.tox,.eggs
[tox:tox]
envlist = py36,flake8
[testenv]
deps =
pytest
pytest-qt
pytest-mock
pytest-xdist
pytest-faulthandler
commands=pytest
[testenv:flake8]
deps =
flake8
commands=flake8 src tests