Added setup.py

This commit is contained in:
Pascal Serrarens 2025-04-28 12:01:02 +02:00
parent ccffbb1811
commit f7a1d26816

21
setup.py Normal file
View File

@ -0,0 +1,21 @@
from setuptools import setup, find_packages
setup(
name='RoboidControl',
version='0.3.0',
packages=find_packages(),
install_requires=[
],
author='Passer Life',
author_email='support@passer.life',
description='Control lightweight networked robots',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://git.passer.life/RoboidControl/RoboidControl-python',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MPL2.0 License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)