RSI-PI/setup.py
Adam 45a36b373c Currently, the network is in a working state.
In the middle of testing all methods.
2025-03-26 20:21:56 +00:00

23 lines
619 B
Python

from setuptools import setup, find_packages
setup(
name="RSIPI",
version="0.1.0",
author="Your Name",
author_email="your.email@example.com",
description="Robot Sensor Interface Python Integration for KUKA Robots",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"numpy",
"matplotlib",
"pandas",
# Other dependencies
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
)