from setuptools import setup, find_packages with open("requirements.txt") as file: INSTALL_REQUIRES = file.read().rstrip().split("\n") setup( name="openwrt_backup", version="1.2.1", description="Backup files from openwrt and copy to computer", install_requires=INSTALL_REQUIRES, author="Raphael Roberts", author_email="raphael.roberts48@gmail.com", entry_points={"console_scripts": ["openwrt-backup = openwrt_backup:main"]}, packages=["openwrt_backup"], package_data={"openwrt_backup": ["config.toml"]}, )