RSI-PI/pyproject.toml
Adam 8701074979 feat: controller setup guide + minimal RSI test program; relicense to Apache-2.0
- Add rsi_config/RSIPI_Minimal.src: RSI test program with no $TECH
  dependency, mirroring KUKA's RSI_Ethernet example (issue #1)
- Add docs/controller-setup.md: KRC4 install/network/troubleshooting
  guide cited against the KST RSI 3.3 V5 manual
- Relicense AGPL-3.0 -> Apache-2.0 (LICENSE, badges, classifiers)
- Add CITATION.cff, README How to Cite + Support sections, FUNDING.yml
- Fix author metadata typos; contact email is now contact@otherworld.dev
- Remove KUKA-proprietary TestServer.exe and stale egg-info from
  tracking; move internal planning docs out of the public tree
2026-07-11 01:12:44 +01:00

41 lines
897 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "RSIPI"
version = "0.1.1"
description = "Robot Sensor Interface Python Integration (RSIPI) for KUKA RSI control"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name="Adam Morgan", email="contact@otherworld.dev" }
]
dependencies = [
"pandas>=2.0",
"numpy>=1.22",
"matplotlib>=3.5",
"lxml>=4.9",
"scipy>=1.8",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]