-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
73 lines (68 loc) · 1.7 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
[metadata]
name = msp360
version = attr: msp360.__version__
author = Nuno André
author_email = mail@nunoand.re
url = https://github.com/forensic-security/msp360#readme
description = MSP360 Managed Backup Service API client
long_description = file: readme.md
long_description_content_type = text/markdown
license = BSD-3-Clause
license-file = LICENSE
platform = any
keywords = cloudberry, msp360, backup
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: System :: Archiving :: Backup
Typing :: Typed
project_urls =
Source = https://github.com/forensic-security/msp360
Bug Tracker = https://github.com/forensic-security/msp360/issues
[options]
zip_safe = False
include_package_data = True
python_requires = >= 3.7
package_dir =
=src
packages = find:
setup_requires =
setuptools >= 40.9.0
wheel >= 0.32
install_requires =
httpx>=0.22.0
typing-extensions>=4.3.0;python_version<'3.8'
[options.packages.find]
where = src
[options.package_data]
msp360 =
py.typed
[options.extras_require]
dev =
flake8
mypy
pytest
docs =
sphinx
sphinx-rtd-theme
[flake8]
ignore = E221, E241
exclude =
.git,
__pycache__,
.mypy_cache,
.pytest_cache,
max-complexity = 10
inline-quotes = '
multiline-quotes = '''
docstring-quotes = '''