bugfix
This commit is contained in:
parent
e56811c7cf
commit
77ce369d28
11
setup.py
11
setup.py
@ -19,6 +19,11 @@ description = "kivy blocks is a tool to build kivy ui with json format uidesc fi
|
|||||||
author = "yumoqing"
|
author = "yumoqing"
|
||||||
email = "yumoqing@icloud.com"
|
email = "yumoqing@icloud.com"
|
||||||
|
|
||||||
|
required = []
|
||||||
|
with open('requirements.txt', 'r') as f:
|
||||||
|
ls = f.read()
|
||||||
|
required = ls.split('\n')
|
||||||
|
|
||||||
package_data = {
|
package_data = {
|
||||||
"kivyblocks":[
|
"kivyblocks":[
|
||||||
'imgs/*.png',
|
'imgs/*.png',
|
||||||
@ -45,11 +50,7 @@ setup(
|
|||||||
author=author,
|
author=author,
|
||||||
author_email=email,
|
author_email=email,
|
||||||
|
|
||||||
install_requires=[
|
install_requires=required,
|
||||||
"kivy",
|
|
||||||
"appPublic",
|
|
||||||
"sqlor"
|
|
||||||
],
|
|
||||||
packages=[
|
packages=[
|
||||||
'kivyblocks',
|
'kivyblocks',
|
||||||
# 'kivyblocks.image_processing',
|
# 'kivyblocks.image_processing',
|
||||||
|
Loading…
Reference in New Issue
Block a user