started adding package building

This commit is contained in:
Joel Klimont 2022-10-04 18:54:48 +02:00
parent e35b992865
commit 8ad2d3da8e
5 changed files with 152 additions and 0 deletions

31
client_s2/setup.py Normal file
View file

@ -0,0 +1,31 @@
#!/usr/bin/env python3
import setuptools
import os
base_dir = os.path.dirname(__file__)
readme_path = os.path.join(base_dir, "README.md")
if os.path.exists(readme_path):
with open(readme_path) as stream:
long_description = stream.read()
else:
long_description = ""
setuptools.setup(
name="complib",
author="F-WuTs",
author_email="joel.klimont@comp-air.at",
description="",
summary="Robot client library for the compAIR competition",
platforms=["any"],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/F-WuTS/compLIB",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: Other/Proprietary License",
"Operating System :: Unix"
],
license="proprietary"
)