[build-system] requires = ["setuptools >= 77.0.3"] build-backend = "setuptools.build_meta" [project] name = "sensgw" version = "0.1.0" description = "Sensor gateway" readme = "README.md" requires-python = ">=3.8" license = {text = "MIT"} authors = [{name = "Your Name", email = "you@example.com"}] classifiers = [ "Programming Language :: Python :: 3", "Operating System :: POSIX :: Linux", ] dependencies = [ "asyncpg>=0.31.0", "requests>=2.25.0", "paho-mqtt>=2.0.0", "pysnmp>=7.1.22", "pymeasure>=0.15.0", "PyVISA-py>=0.8.1" ] [project.scripts] sensgw = "sensgw.main:main"