Merge from old Gitea

This commit is contained in:
Jon
2026-04-12 16:06:44 +01:00
commit aaefb2bb35
18 changed files with 492 additions and 0 deletions

22
setup.py Normal file
View File

@@ -0,0 +1,22 @@
from setuptools import setup, find_packages
setup(
name='esasdk',
version='0.1.0',
packages=find_packages(),
install_requires=[
'websockets>=10.0',
],
author='Elite Skills Arena',
author_email='tech@eliteskillsarena.com',
description='ESA SDK for machine control via WebSockets',
keywords='websocket machine control',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.7',
)