make sure the devenv powershell script is actually distributed

It's not a python file, so it will never end up in the installed package
unless we mark it as package_data. This causes problems for people using
non-git checkouts.

Fixes #9435
Closes #9443
pull/9451/head
Eli Schwartz 3 years ago
parent 4840c86ec9
commit 67e841720c
No known key found for this signature in database
GPG Key ID: CEB167EFB5722BD6
  1. 3
      setup.cfg

@ -47,6 +47,9 @@ typing =
mypy
typing_extensions; python_version <"3.8"
[options.package_data]
mesonbuild.scripts = cmd_or_ps.ps1
[options.packages.find]
include = mesonbuild, mesonbuild.*
exclude = *.data

Loading…
Cancel
Save