Move client foler

This commit is contained in:
Konstantin Lampalzer 2022-12-17 23:59:06 +01:00
parent 4c24717278
commit c02cfcd71c
75 changed files with 0 additions and 329 deletions

24
setup.py Normal file
View file

@ -0,0 +1,24 @@
#!/usr/bin/python3
import setuptools
import os
print("Using version: {str(os.environ['VERSION'])}")
setuptools.setup(
name="complib",
version=str(os.environ["VERSION"]),
author="F-WuTs",
author_email="joel.klimont@comp-air.at",
description="",
summary="Robot client library for the compAIR competition",
platforms=["any"],
url="https://github.com/F-WuTS/compLIB",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.9",
"License :: Other/Proprietary License",
"Operating System :: Unix"
],
license="proprietary"
)