-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
23 lines (19 loc) · 985 Bytes
/
MANIFEST.in
File metadata and controls
23 lines (19 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Additional files to include in package source distribution
# https://packaging.python.org/en/latest/guides/using-manifest-in/
include *.rst *.txt
# Include any PEP 0561 inline type information marker files
recursive-include src py.typed
# Include documentation, tests, and test configuration in source package
# See https://github.com/PyCQA/pydocstyle/pull/252#issuecomment-297987794
recursive-include .vulture *.py
recursive-include docs *.py *.rst
recursive-include tests *.py *.rst *.txt
include tox.ini
# Include .gitignore as .ignore for ruff, since it will only use .gitignore if
# .git dir exists in the same or ancestor directory:
# https://github.com/astral-sh/ruff/issues/5930
# However, it treats .ignore file like .gitignore unconditionally:
# https://docs.rs/ignore/latest/ignore/struct.WalkBuilder.html#ignore-rules
# Note: .ignore is a symlink to .gitignore to avoid duplication.
# setuptools includes the content in the sdist tarball, not a link.
include .ignore