1 Star 0 Fork 3

RT-Thread-Mirror / env

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
LaterComer 提交于 2024-05-12 09:36 . Update setup.py
from setuptools import setup, find_packages
setup(
name='env',
version='0.0.1',
description='RT-Thread Env',
url='https://github.com/RT-Thread/env.git',
author='RT-Thread Development Team',
author_email='rt-thread@rt-thread.org',
keywords='rt-thread',
license='Apache License 2.0',
project_urls={
'Github repository': 'https:/github.com/rt-thread/env.git',
'User guide': 'https:/github.com/rt-thread/env.git',
},
python_requires='>=3.6',
install_requires=[
'SCons>=4.0.0',
'requests',
'psutil',
'tqdm',
'kconfiglib',
'windows-curses; platform_system=="Windows"',
],
packages=[
'env',
'env.cmds',
'env.cmds.cmd_package',
],
package_dir={
'env': '.',
'env.cmds': 'cmds',
'env.cmds.cmd_package': 'cmds/cmd_package',
},
package_data={'': ['*.*']},
exclude_package_data={'': ['MANIFEST.in']},
include_package_data=True,
entry_points={
'console_scripts': [
'rt-env=env.env:main',
'menuconfig=env.env:menuconfig',
'pkgs=env.env:pkgs',
'sdk=env.env:sdk',
'system=env.env:system',
]
},
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/RT-Thread-Mirror/env.git
git@gitee.com:RT-Thread-Mirror/env.git
RT-Thread-Mirror
env
env
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891