main
yumoqing 2022-03-07 19:31:09 +08:00
parent 8b6921ed9b
commit 06654ee081
1 changed files with 3 additions and 7 deletions

View File

@ -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