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