48 lines
1.1 KiB
Python
48 lines
1.1 KiB
Python
|
# -*- 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 = {
|
||
|
"kivyblocks":['imgs/*.png', 'imgs/*.gif','imgs/*.jpg','ttf/*.ttf', 'ui/*.uidesc' ],
|
||
|
}
|
||
|
|
||
|
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'
|
||
|
)
|