-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
42 lines (35 loc) · 929 Bytes
/
MANIFEST.in
File metadata and controls
42 lines (35 loc) · 929 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
42
# Include documentation
include README.md
include LICENSE
include CONTRIBUTING.md
include CHANGELOG.md
# Include requirements files
include requirements.txt
include requirements-dev.txt
# Include all documentation
recursive-include docs *.md *.rst *.txt *.png *.jpg *.gif
# Include example scripts
recursive-include examples *.py *.ipynb
# Include test data and fixtures
recursive-include tests *.py *.json *.txt *.npy
# Include type stubs if any
recursive-include cognitive_computing *.pyi
# Include configuration files
include .coveragerc
include .gitignore
include pytest.ini
include setup.cfg
include tox.ini
# Exclude compiled Python files
global-exclude *.pyc
global-exclude *.pyo
global-exclude __pycache__
global-exclude .DS_Store
global-exclude .git
global-exclude .pytest_cache
global-exclude .tox
global-exclude .coverage
global-exclude htmlcov
global-exclude *.egg-info
global-exclude build
global-exclude dist