Cleanup
This commit is contained in:
parent
c16a7172e7
commit
d4a7d8c0c0
186 changed files with 1 additions and 7056 deletions
24
client/setup.py
Normal file
24
client/setup.py
Normal 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"
|
||||
)
|
Reference in a new issue