-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
59 lines (50 loc) · 1.51 KB
/
Copy pathMANIFEST.in
File metadata and controls
59 lines (50 loc) · 1.51 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
include README.md
include CHANGELOG.md
include LICENSE
include pyproject.toml
include requirements.txt
include pytest.ini
include .pre-commit-config.yaml
# Include documentation
recursive-include docs *.md *.rst *.txt
recursive-include docs *.py *.yaml *.yml
# Include examples
recursive-include examples *.py *.ipynb *.md
recursive-include examples *.ecsv *.csv *.json
# Include tools
recursive-include tools *.py *.sh *.md
# NO data files.
#
# `recursive-include data *.ecsv *.npz *.fits` used to be here and produced a **342 MB sdist**,
# against PyPI's 100 MB per-file limit -- the upload would have been rejected outright. The
# directory holds 3.2 GB (3.1 GB of it `data/test`), and the package reads none of it at run
# time: the "precompute" paths in `_isochrone.py` build in-memory tensors, not files.
#
# Observational data for one cluster belongs in an archive with a DOI (Zenodo, CDS), not in a
# distribution every user downloads. The NGC 6383 products are cited from the paper; the
# package itself is code.
prune data
# Generated, never shipped.
prune docs/_build
# Include tests
recursive-include tests *.py
# Exclude development and build files
global-exclude __pycache__
global-exclude *.py[co]
global-exclude *.egg-info
global-exclude .DS_Store
global-exclude .git*
global-exclude *.swp
global-exclude *.swo
global-exclude *~
# Exclude specific directories
prune backups
prune .vscode
prune dist
prune build
prune htmlcov
prune .pytest_cache
prune .mypy_cache
# Exclude specific files
exclude .coverage
exclude coverage.xml