forked from divio/divio-cli
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
70 lines (58 loc) · 1.87 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
[tool:pytest]
markers =
integration
[flake8]
exclude =
divio_cli/test/data
[metadata]
name = divio-cli
license_file = LICENSE.txt
license = BSD
author = Divio AG
author_email = info@divio.com
description = The command-line client for the Divio Cloud
long_description =
The Divio CLI is a tool for interacting with Divio projects and the Divio cloud infrastructure.
It provides commands to set up projects locally, push and pull media and database content to
remote cloud projects, get and set environment variables, and so on.
How to get started with the Divio CLI: https://docs.divio.com/en/latest/how-to/local-cli/
Divio CLI reference: https://docs.divio.com/en/latest/reference/divio-cli
url = https://docs.divio.com/en/latest/how-to/local-cli/
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Software Development
platforms = OS Independent
[options]
packages = find:
include_package_data = true
setup_requires = setuptools_scm[toml]
zip_safe = no
[options.entry_points]
console_scripts =
divio = divio_cli.cli:cli
[coverage:report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
NOCOV
# Don't complain if non-runnable code isn't run:
if __name__ == .__main__.:
raise AssertionError
raise NotImplementedError
precision = 2
[coverage:run]
branch = true
source = .