| 1234567891011121314151617181920 |
- from setuptools import setup, find_packages
- setup(
- name="battery-health-monitor",
- version="0.1.0",
- packages=find_packages(),
- install_requires=[
- "paho-mqtt>=1.6.1",
- "smbus2>=0.4.2",
- "aiohttp>=3.8.5",
- "numpy>=1.24.3",
- "pyyaml>=6.0.1",
- ],
- entry_points={
- 'console_scripts': [
- 'battery-monitor=src.main:main',
- ],
- },
- python_requires='>=3.8',
- )
|