-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathMANIFEST.in
More file actions
32 lines (26 loc) · 879 Bytes
/
MANIFEST.in
File metadata and controls
32 lines (26 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Specify files to be included in source distributions (sdist).
# Some files are included by default already (e.g. LICENSE, README*).
# https://setuptools.pypa.io/en/stable/userguide/miscellaneous.html#controlling-files-in-the-distribution
graft ci
graft examples
graft rust
graft tests
prune rust/target
prune tests/bindgen/generated
prune tests/codegen/generated
# Wasmtime C headers. Downloaded by ci/download-wasmtime.py
prune wasmtime/include
# WebAssmbly modules, python bindings. Generated by ci/build-rust.py
recursive-exclude wasmtime/bindgen/generated *.py *.wasm
include .flake8
include CONTRIBUTING.md
include mypy.ini
include pytest.ini
include VERSION
# Wasmtime shared library. Downloaded by ci/download-wasmtime.py
# Included in binary distributions
global-exclude *.dll
global-exclude *.dylib
global-exclude *.py[cdo]
global-exclude *.so
global-exclude *~