-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
41 lines (32 loc) · 948 Bytes
/
MANIFEST.in
File metadata and controls
41 lines (32 loc) · 948 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
38
39
40
41
# MANIFEST.in - Distribution Control for AutoCSV Profiler Suite
# Project files
include LICENSE NOTICE DISCLAIMER README.md CHANGELOG.md CONTRIBUTING.md
include requirements.txt requirements-dev.txt pyproject.toml
include *.ini .bandit .editorconfig .flake8 .gitignore .pre-commit-config.yaml .secrets.baseline
# Source code
recursive-include autocsv_profiler *.py
recursive-include bin *.py
recursive-include scripts *.py
recursive-include tests *.py
# Configuration
recursive-include config *.yml *.yaml
# Documentation and media
recursive-include docs *.md *.txt *.png *.gif
recursive-include docs/examples *.py
# Exclude cache and build artifacts
exclude .mypy_cache
exclude __pycache__
exclude .pytest_cache
exclude htmlcov
exclude .coverage
exclude *.pyc
exclude *.pyo
# Exclude git-specific files
exclude .gitkeep
# Exclude IDE files
exclude .vscode
exclude .idea
# Exclude temporary files
exclude *.tmp
exclude *.log
exclude *.bak