This commit is contained in:
yumoqing 2021-11-03 10:44:08 +08:00
parent aa94f34ea5
commit 2503a95fc4
2 changed files with 743 additions and 748 deletions

1488
kivyblocks/blocks.py → kivyblocks/blocks.pyx Executable file → Normal file

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,7 @@
from distutils.core import setup from distutils.core import setup
from setuptools import setup, find_packages from setuptools import setup, find_packages
from Cython.Build import cythonize
from version import version from version import version
# usage: # usage:
@ -32,6 +33,8 @@ package_data = {
setup( setup(
name="kivyblocks", name="kivyblocks",
ext_modules=cythonize(
['kivyblocks/blocks.pyx']),
version=version, version=version,
# uncomment the following lines if you fill them out in release.py # uncomment the following lines if you fill them out in release.py