aboutsummaryrefslogtreecommitdiffstats
path: root/setup.cfg
blob: 9fbcc6b2b9bb98eb883b2718072760f12a325c3c (plain)
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
# SPDX-License-Identifier: Apache-2.0
[metadata]
name = onapsdk
version = attr: src.onapsdk.version.__version__
description = SDK to use ONAP Programatically
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
url = https://gitlab.com/Orange-OpenSource/lfn/onap/python-onapsdk
author = Orange OpenSource
license = Apache 2.0
classifiers =
  Programming Language :: Python :: 3
  Programming Language :: Python :: 3.7
  Programming Language :: Python :: 3.8

[options]
zip_safe = False
include_package_data = True
python_requires = >=3.7,<4
package_dir=
    =src
packages=find_namespace:
install_requires =
  requests[socks]==2.24.0
  jinja2==3.0.3
  simplejson==3.17.6
  oyaml==1.0
  pyOpenSSL==22.0.0
  jsonschema==4.4.0
  dacite==1.6.0
setup_requires =
  pytest-runner==5.2
tests_require =
  pytest==7.0.1
  pytest-cov==3.0.0
  requests-mock==1.9.3

[options.packages.find]
where=src

[options.package_data]
onapsdk = **/templates/*

[aliases]
test=pytest

[tool:pytest]
addopts =
  --verbose --doctest-modules --junitxml=pytest-unit.xml
  --cov-report term-missing --cov-report xml --cov-report html
  --cov=src/onapsdk --maxfail=1 --cov-fail-under=98

testpaths = tests src