You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
652 B

  1. from setuptools import setup, find_packages
  2. from setuptools.extension import Extension
  3. from Cython.Build import cythonize
  4. with open("requirements.txt") as file:
  5. REQUIREMENTS = file.read().rstrip().split("\n")
  6. extensions = [Extension("wordscape.fits", ["src/fits.pyx"])]
  7. setup(
  8. author="Raphael Roberts",
  9. author_email="raphael.robets48@gmail.com",
  10. description="Cheat for wordscape and wordscape like games",
  11. entry_points={"console_scripts": ["wordscape=wordscape.main:main"]},
  12. ext_modules=cythonize(extensions),
  13. install_requires=REQUIREMENTS,
  14. name="wordscape_cheats",
  15. packages=find_packages(),
  16. version="1.0",
  17. )