2019-12-19 11:13:47 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
# 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 blocks is a tool to build kivy ui with json format uidesc files"
|
|
|
|
author = "yumoqing"
|
|
|
|
email = "yumoqing@icloud.com"
|
|
|
|
|
|
|
|
packages=find_packages()
|
|
|
|
package_data = {
|
2020-03-08 17:39:01 +08:00
|
|
|
"kivyblocks":[
|
|
|
|
'imgs/*.png',
|
|
|
|
'imgs/*.atlas',
|
|
|
|
'imgs/*.gif',
|
|
|
|
'imgs/*.jpg',
|
|
|
|
'ttf/*.ttf',
|
2021-04-23 15:13:41 +08:00
|
|
|
'ui/*.uidesc',
|
|
|
|
'xcamera/xcamera.kv',
|
|
|
|
'xcamera/data/*'
|
2020-03-08 17:39:01 +08:00
|
|
|
],
|
2019-12-19 11:13:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="kivyblocks",
|
|
|
|
version=version,
|
|
|
|
|
|
|
|
# uncomment the following lines if you fill them out in release.py
|
|
|
|
description=description,
|
|
|
|
author=author,
|
|
|
|
author_email=email,
|
|
|
|
|
|
|
|
install_requires=[
|
|
|
|
"kivy",
|
|
|
|
"appPublic",
|
|
|
|
"sqlor"
|
|
|
|
],
|
|
|
|
packages=packages,
|
|
|
|
package_data=package_data,
|
|
|
|
keywords = [
|
|
|
|
],
|
|
|
|
classifiers = [
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
|
|
],
|
|
|
|
platforms= 'any'
|
|
|
|
)
|