We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5655518 commit 873a22dCopy full SHA for 873a22d
tools/azure-sdk-tools/packaging_tools/templates/packaging_files/setup.py
@@ -61,13 +61,15 @@
61
"License :: OSI Approved :: MIT License",
62
],
63
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
- ]),
+ packages=find_packages(
+ exclude=[
+ "tests",
+ # Exclude packages that will be covered by PEP420 or nspkg
+ {%- for nspkg_name in nspkg_names %}
+ "{{ nspkg_name }}",
+ {%- endfor %}
71
+ ]
72
+ ),
73
include_package_data=True,
74
package_data={
75
"pytyped": ["py.typed"],
0 commit comments