-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
37 lines (32 loc) · 853 Bytes
/
Copy pathMANIFEST.in
File metadata and controls
37 lines (32 loc) · 853 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
33
34
35
36
37
# Include documentation and configuration files
include README.md
include LICENSE
include CHANGELOG.md
include pyproject.toml
# Include example configuration files
include config.yaml.example
include .grepctl.yaml.example
# Include documentation
recursive-include docs *.md *.rst *.txt
# Include example scripts
recursive-include examples *.py *.yaml *.json
# Include package data
recursive-include src/grepctl *.py *.yaml *.json
# Exclude unnecessary files
global-exclude __pycache__
global-exclude *.py[co]
global-exclude .DS_Store
global-exclude .git*
global-exclude *.so
global-exclude *.dylib
global-exclude .venv
global-exclude venv
global-exclude env
global-exclude build
global-exclude dist
global-exclude *.egg-info
global-exclude .pytest_cache
global-exclude .mypy_cache
global-exclude .coverage
global-exclude htmlcov
global-exclude .tox