This commit is contained in:
yumoqing 2022-03-07 19:31:09 +08:00
parent 8b6921ed9b
commit 06654ee081

View File

@ -3,19 +3,16 @@
import codecs import codecs
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
# usage: # usage:
# python setup.py bdist_wininst generate a window executable file # python setup.py bdist_wininst generate a window executable file
# python setup.py bdist_egg generate a egg file # python setup.py bdist_egg generate a egg file
# Release information about eway # Release information about eway
# version = "0.0.4"
description = "kivy charts is a tool to build kivy data plot" description = "kivy charts is a tool to build kivy data plot"
author = "yumoqing" author = "yumoqing"
email = "yumoqing@icloud.com" email = "yumoqing@icloud.com"
version = '0.0.6'
depandent_packages = [] depandent_packages = []
with codecs.open('./requirements.txt', 'r', 'utf-8') as f: with codecs.open('./requirements.txt', 'r', 'utf-8') as f:
b = f.read() b = f.read()
@ -37,9 +34,8 @@ package_data = {
setup( setup(
name="kivycharts", name="kivycharts",
ext_modules=cythonize( ext_modules= [
[ ],
]),
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