22 lines
659 B
Python
22 lines
659 B
Python
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',
|
|
) |