1 Star 0 Fork 35

ox_kite/oebuild

forked from openEuler/oebuild 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
alichinese 提交于 2023-08-16 17:50 . generate: format list param info
import os
import setuptools
SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
os.chdir(SCRIPT_DIR)
with open('README.rst', 'r') as f:
long_description = f.read()
with open('src/oebuild/version.py', 'r') as f:
__version__ = None
exec(f.read())
assert __version__ is not None
version = os.environ.get('OEBUILD_VERSION', __version__)
setuptools.setup(
name='oebuild',
version=version,
author='alichinese',
author_email='',
description='',
long_description=long_description,
# http://docutils.sourceforge.net/FAQ.html#what-s-the-official-mime-type-for-restructuredtext-data
long_description_content_type="text/x-rst",
url='',
packages=setuptools.find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
],
install_requires=[
'setuptools',
'packaging',
'PyYaml',
'docker',
'GitPython',
'colorama',
'ruamel.yaml',
'dataclasses',
'reprint',
'prettytable'
],
python_requires='>=3.8',
entry_points={'console_scripts': ('oebuild = oebuild.app.main:main',)},
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ox_kite/oebuild.git
git@gitee.com:ox_kite/oebuild.git
ox_kite
oebuild
oebuild
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385