From 06654ee08184f1fd199fdbbc38f2cccd6cffcf1f Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 7 Mar 2022 19:31:09 +0800 Subject: [PATCH] bugfix --- setup.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 8d48d92..0422e31 100644 --- a/setup.py +++ b/setup.py @@ -3,19 +3,16 @@ import codecs from distutils.core import setup from setuptools import setup, find_packages -from Cython.Build import cythonize -from version import version # usage: # python setup.py bdist_wininst generate a window executable file # python setup.py bdist_egg generate a egg file # Release information about eway -# version = "0.0.4" description = "kivy charts is a tool to build kivy data plot" author = "yumoqing" email = "yumoqing@icloud.com" - +version = '0.0.6' depandent_packages = [] with codecs.open('./requirements.txt', 'r', 'utf-8') as f: b = f.read() @@ -37,9 +34,8 @@ package_data = { setup( name="kivycharts", - ext_modules=cythonize( - [ - ]), + ext_modules= [ + ], version=version, # uncomment the following lines if you fill them out in release.py