from cx_Freeze import setup, Executable

# Define the executable and the setup configuration
setup(
    name="FeedUpdater",
    version="1.0",
    description="A script to update RSS feed and filter blocked words",
    executables=[Executable("attPath.py")],
)
