Source kit builds were not longer including the tests, examples,
and utilities because the glob stopped matching. Previously we
were using an "absolute" syntax starting with "/" but this doesn't
seem to work now.
Also, added tests/tsigkeys/*.key to the glob so they are included.
module-name = "dns"
module-root = ""
source-include = [
- "/dns/*.py",
- "/dns/**/*.py",
- "/dns/py.typed",
- "/examples/*.txt",
- "/examples/*.py",
- "/tests/*.txt",
- "/tests/*.py",
- "/tests/*.good",
- "/tests/example",
- "/tests/query",
- "/tests/*.pickle",
- "/tests/*.text",
- "/tests/*.generic",
- "/tests/tls/*.crt",
- "/tests/tls/*.pem",
- "/util/**",
+ "dns/*.py",
+ "dns/**/*.py",
+ "dns/py.typed",
+ "examples/*.txt",
+ "examples/*.py",
+ "tests/*.txt",
+ "tests/*.py",
+ "tests/*.good",
+ "tests/example",
+ "tests/query",
+ "tests/*.pickle",
+ "tests/*.text",
+ "tests/*.generic",
+ "tests/tls/*.crt",
+ "tests/tls/*.pem",
+ "tests/tsigkeys/*.key",
+ "util/**",
]
source-exclude = [
".pytest_cache",