aboutsummaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg53
1 files changed, 53 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..9fbcc6b
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,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