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.

17 lines
501 B

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