Files
2025-04-13 18:36:28 -05:00

26 lines
629 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
'''
name: APP名称
sdk_version: python SDK版本
version: APP版本
packages APP源代码路径
package_dir APP源代码路径
install_requires 安装依赖
entry_points 程序执行的入口
'''
from setuptools import setup, find_packages
setup(name='appname',
version='0.0.1',
sdk_version='1.3.5',
author='Inhand',
author_email='',
description='',
license='PRIVATE',
packages=find_packages('src'),
package_dir={'': 'src'},
zip_safe=False,
install_requires=[],
entry_points="""
[console_scripts]
appname = Application:main
""")