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.
|
|
from setuptools import setup, find_packagesfrom setuptools.extension import Extensionfrom 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",)
|