-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
74 lines (66 loc) · 1.58 KB
/
MANIFEST.in
File metadata and controls
74 lines (66 loc) · 1.58 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
include README.md
include LICENSE
include SECURITY.md
include CONTRIBUTING.md
include CODE_OF_CONDUCT.md
include CHANGELOG.md
include requirements.txt
include requirements-dev.txt
include pyproject.toml
include setup.cfg
include pytest.ini
include mypy.ini
include .pre-commit-config.yaml
include .editorconfig
# Configuration files
recursive-include config *.toml.example
recursive-include config *.example
# Documentation
recursive-include docs *.md
recursive-include docs *.rst
# Examples
recursive-include examples *.py
recursive-include examples *.json
recursive-include examples *.csv
recursive-include examples *.xlsx
# Test data
recursive-include test_data *.json
recursive-include test_data *.csv
recursive-include test_data *.xlsx
# Scripts
recursive-include scripts *.py
recursive-include scripts *.sql
recursive-include scripts *.sh
# GitHub workflows
recursive-include .github *.yml
recursive-include .github *.yaml
# Docker files
include Dockerfile
include docker-compose*.yml
include .dockerignore
# Exclude development and test files
global-exclude *.pyc
global-exclude __pycache__
global-exclude .pytest_cache
global-exclude .coverage
global-exclude htmlcov
global-exclude .mypy_cache
global-exclude .hypothesis
global-exclude .tox
global-exclude .venv
global-exclude venv
global-exclude env
global-exclude .env
global-exclude .env.*
global-exclude *.log
global-exclude logs
global-exclude temp
global-exclude build
global-exclude dist
global-exclude *.egg-info
global-exclude .git
global-exclude .idea
global-exclude .vscode
global-exclude .DS_Store
global-exclude *.swp
global-exclude *.swo