23 lines
619 B
Python
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',
|
|
) |