-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMANIFEST.in
More file actions
30 lines (28 loc) · 718 Bytes
/
MANIFEST.in
File metadata and controls
30 lines (28 loc) · 718 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
# Include only the specified files in the source distribution
include LICENSE.txt
include MANIFEST.in
include pyproject.toml
include README.md
include setup.cfg
# Include everything in the cons source directory
recursive-include cons *
# Exclude unwanted directories and files
prune .github
prune tests
prune .pytest_cache
prune .ropeproject
prune .venv
prune __pycache__
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.pyd
global-exclude .git*
global-exclude .coverage
global-exclude coverage.xml
global-exclude testing-report.html
global-exclude Makefile
global-exclude requirements.txt
global-exclude .pre-commit-config.yaml
global-exclude .pylintrc
global-exclude .DS_Store
global-exclude __pycache__