diff --git a/connectors/python/Jenkinsfile b/connectors/python/Jenkinsfile index 87c0f73ab..8cef21081 100644 --- a/connectors/python/Jenkinsfile +++ b/connectors/python/Jenkinsfile @@ -4,6 +4,8 @@ defaultCiPipeline { packageId = 'connectors-python' + publisher = 'pypi' + codeCoverageTool = 'coverage' minimumCodeCoverage = 95 } diff --git a/connectors/python/pyproject.toml b/connectors/python/pyproject.toml new file mode 100644 index 000000000..f0ab0dcd4 --- /dev/null +++ b/connectors/python/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = 'symbol-connectors' +version = '0.0.1' +description = 'Symbol Connectors' +authors = ['Symbol Contributors '] +maintainers = ['Symbol Contributors '] +license = 'MIT' + +readme = 'README.md' + +packages = [{ include = 'symbolconnectors' }] + +repository = 'https://github.com/symbol/product/tree/main/python/connectors' + +keywords = ['symbol', 'connectors', 'Symbol Connectors'] + +classifiers = ['Programming Language :: Python :: 3.7'] + +[tool.poetry.dependencies] +python = "^3.7"