mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
da0935c0e5
* Patch Urls * fix test
16 lines
336 B
Python
16 lines
336 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='py_connect',
|
|
version='1.0',
|
|
|
|
description='This is a python package to handle some ci-connect payload parts',
|
|
|
|
url='https://github.com/sap-production/py_connect',
|
|
|
|
# Author details
|
|
author='Some Author',
|
|
author_email='some.author@sap.com',
|
|
packages=['payload']
|
|
)
|