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
17 lines
501 B
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",
|
|
)
|