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
20 lines
652 B
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",
|
|
)
|