main
yumoqing 2022-06-09 15:52:45 +08:00
parent 582d39fa5b
commit bba2da2fcb
3 changed files with 4 additions and 2 deletions

View File

@ -0,0 +1 @@
from .version import __version__

View File

@ -0,0 +1 @@
__version__ = '0.0.9'

View File

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
from kivycharts.version import __version__
import codecs
try:
from setuptools import setup
@ -14,7 +14,7 @@ except ImportError:
description = "kivy charts is a tool to build kivy data plot"
author = "yumoqing"
email = "yumoqing@icloud.com"
version = '0.0.8'
version = __version__
depandent_packages = []
with codecs.open('./requirements.txt', 'r', 'utf-8') as f:
b = f.read()