from setuptools import setup, find_packages with open("requirements.txt") as file: INSTALL_REQUIRES = file.read().rstrip().split("\n") setup( name="ssh-config-utils", version="1.0", description="Easy way to modify and sync ssh config files", install_requires=INSTALL_REQUIRES, author="Raphael Roberts", author_email="raphael.roberts48@gmail.com", packages=find_packages(), entry_points={"console_scripts": ["ssh-config=ssh_config_utils:main"]}, )