-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 729 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 729 Bytes
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
from abcli import NAME, VERSION, DESCRIPTION, REPO_NAME
from blueness.pypi import setup
setup(
filename=__file__,
repo_name=REPO_NAME,
name=NAME,
version=VERSION,
description=DESCRIPTION,
packages=[
NAME,
f"{NAME}.help",
f"{NAME}.help.env",
f"{NAME}.help.mlflow",
f"{NAME}.keywords",
f"{NAME}.modules",
f"{NAME}.modules.terraform",
f"{NAME}.plugins",
f"{NAME}.plugins.git",
f"{NAME}.plugins.gpu",
f"{NAME}.plugins.ssm",
f"{NAME}.tests",
],
package_data={
NAME: [
"config.env",
"sample.env",
".abcli/**/*.sh",
"assets/**/*",
],
},
)