Skip to content

Commit 873a22d

Browse files
authored
update setup template (Azure#30536)
1 parent 5655518 commit 873a22d

File tree

1 file changed

+9
-7
lines changed
  • tools/azure-sdk-tools/packaging_tools/templates/packaging_files

1 file changed

+9
-7
lines changed

tools/azure-sdk-tools/packaging_tools/templates/packaging_files/setup.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,15 @@
6161
"License :: OSI Approved :: MIT License",
6262
],
6363
zip_safe=False,
64-
packages=find_packages(exclude=[
65-
"tests",
66-
# Exclude packages that will be covered by PEP420 or nspkg
67-
{%- for nspkg_name in nspkg_names %}
68-
"{{ nspkg_name }}",
69-
{%- endfor %}
70-
]),
64+
packages=find_packages(
65+
exclude=[
66+
"tests",
67+
# Exclude packages that will be covered by PEP420 or nspkg
68+
{%- for nspkg_name in nspkg_names %}
69+
"{{ nspkg_name }}",
70+
{%- endfor %}
71+
]
72+
),
7173
include_package_data=True,
7274
package_data={
7375
"pytyped": ["py.typed"],

0 commit comments

Comments
 (0)