1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/pkg/piperutils/testdata/setup.py

22 lines
633 B
Python
Raw Normal View History

from setuptools import setup, find_packages
from codecs import open
from os import path
def get_version():
with open('version.txt') as ver_file:
version_str = ver_file.readline().rstrip()
return version_str
def get_install_requires():
with open('requirements.txt') as reqs_file:
reqs = [line.rstrip() for line in reqs_file.readlines()]
return reqs
setup(name="some-test",
version=get_version(),
python_requires='>=3',
packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'coverage', 'bin']),
description="test",
install_requires=get_install_requires(),
)