This repository has been archived on 2025-06-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
compLIB/client/setup.py
Konstantin Lampalzer d4a7d8c0c0 Cleanup
2022-10-07 16:35:37 +02:00

24 lines
655 B
Python

#!/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"
)