-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
47 lines (46 loc) · 1.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup
setup(
name='env',
version='2.0.1',
description='RT-Thread Env',
url='https://github.com/RT-Thread/env.git',
author='RT-Thread Development Team',
author_email='[email protected]',
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',
]
},
)