-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
executable file
·27 lines (25 loc) · 1006 Bytes
/
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
#!/usr/bin/env python3
#
## @file setup.py
#
# Copyright (c) 2017 - 2020, Intel Corporation. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
from setuptools import setup
setup(name='edkrepo',
version='3.2.4',
description='The edkrepo tools',
packages=['edkrepo', 'edkrepo.commands', 'edkrepo.commands.arguments', 'edkrepo.commands.humble',
'edkrepo.git_automation', 'edkrepo.common', 'edkrepo.common.workspace_maintenance',
'edkrepo.common.workspace_maintenance.humble', 'edkrepo.config', 'edkrepo.config.humble',
'edkrepo_manifest_parser', 'project_utils', 'project_utils.arguments'],
package_data={
},
include_package_data=True,
entry_points={
'console_scripts': [
'edkrepo = edkrepo.edkrepo_entry_point:main',
'command_completion_edkrepo = edkrepo.command_completion_edkrepo:main'
]
}
)