diff --git a/runner/LICENSE b/runner/LICENSE deleted file mode 100644 index a4e97db6fcefa7adcfa326b5b1974c486a2bba3a..0000000000000000000000000000000000000000 --- a/runner/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) [2022] [Digital Learning GmbH] - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file diff --git a/runner/Readme.md b/runner/Readme.md deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/runner/requirements.txt b/runner/requirements.txt deleted file mode 100644 index e4ea3e222377614277bb6a5b61fec047767f4a03..0000000000000000000000000000000000000000 --- a/runner/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -nose -sphinx \ No newline at end of file diff --git a/runner/setup.py b/runner/setup.py deleted file mode 100644 index 4f29c51a2a3b430978a034fc5f63708a253129d3..0000000000000000000000000000000000000000 --- a/runner/setup.py +++ /dev/null @@ -1,20 +0,0 @@ -from setuptools import setup, find_packages - - -with open('README.rst') as f: - readme = f.read() - -with open('LICENSE') as f: - license = f.read() - -setup( - name='runner', - version='0.0.1', - description='Runner package for the analytics engine', - long_description=readme, - author='Digital Learning GmbH', - author_email='kontakt@digitallearning.gmbh', - url='https://gitlab.digitallearning.gmbh/polaris/analytics-engine', - license=license, - packages=find_packages(exclude=('tests', 'docs')) -)