Merge from old Gitea
This commit is contained in:
22
setup.py
Normal file
22
setup.py
Normal 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',
|
||||
)
|
||||
Reference in New Issue
Block a user