from setuptools import setup, find_packages from Cython.Build import cythonize with open("requirements.txt") as file: REQUIREMENTS = file.read().rstrip().split("\n") setup( author="Raphael Roberts", author_email="raphael.robets48@gmail.com", description="Cheat for wordscape and wordscape like games", entry_points=None, ext_modules=cythonize("src/fits.pyx"), install_requires=REQUIREMENTS, name="wordscape_cheats", packages=find_packages(), version="1.0", )