Skip to content

Commit

Permalink
update setup template (#30536)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangyan99 authored May 25, 2023
1 parent 5655518 commit 873a22d
Showing 1 changed file with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,15 @@
"License :: OSI Approved :: MIT License",
],
zip_safe=False,
packages=find_packages(exclude=[
"tests",
# Exclude packages that will be covered by PEP420 or nspkg
{%- for nspkg_name in nspkg_names %}
"{{ nspkg_name }}",
{%- endfor %}
]),
packages=find_packages(
exclude=[
"tests",
# Exclude packages that will be covered by PEP420 or nspkg
{%- for nspkg_name in nspkg_names %}
"{{ nspkg_name }}",
{%- endfor %}
]
),
include_package_data=True,
package_data={
"pytyped": ["py.typed"],
Expand Down

0 comments on commit 873a22d

Please sign in to comment.