-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
55 lines (43 loc) · 1.03 KB
/
MANIFEST.in
File metadata and controls
55 lines (43 loc) · 1.03 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
# Include the README
include README.md
# Include the license file
include LICENSE
# Include the changelog
include CHANGELOG.md
# Include the requirements files
include requirements.txt
include requirements-dev.txt
# Include documentation
recursive-include docs *.rst *.py *.bat Makefile
include docs/requirements.txt
# Include tests
recursive-include tests *.py
# Include examples
recursive-include examples *.py *.ipynb *.md
# Include configuration files
include setup.cfg
include pyproject.toml
include tox.ini
include .coveragerc
# Include CI configuration
include .github/workflows/*.yml
include .pre-commit-config.yaml
# Exclude build artifacts
prune build
prune dist
prune *.egg-info
# Exclude cache files
global-exclude __pycache__
global-exclude *.py[co]
global-exclude *.so
global-exclude .DS_Store
global-exclude .coverage
global-exclude .pytest_cache
global-exclude .tox
# Exclude development files
exclude .gitignore
exclude .flake8
exclude .isort.cfg
exclude mypy.ini
# Include package data
recursive-include pyinterpret *.py