-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMANIFEST.in
More file actions
28 lines (25 loc) · 726 Bytes
/
Copy pathMANIFEST.in
File metadata and controls
28 lines (25 loc) · 726 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
include LICENSE
include CHANGELOG.md
include CONTRIBUTING.md
include SECURITY.md
include INSTALL.md
include README.md
include Makefile
include pyproject.toml
include setup.py
# Ship only the sources needed to build the package.
# (Compiled .so/.pyd are produced at build time by build_ext, not shipped in the sdist.)
recursive-include asyncdb *.py *.pyx *.pxd *.pyi
include asyncdb/py.typed
# --- Never ship build artifacts, caches or compiled blobs in the sdist ---
global-exclude *.pyc *.pyo *.pyd *.so *.o *.obj
global-exclude *.cpp
global-exclude *.c
recursive-exclude * __pycache__
# Exclude tests, settings, env, examples, docs and bin folders
prune docs
prune settings
prune env
prune examples
prune bin
prune tests