-
Notifications
You must be signed in to change notification settings - Fork 229
Closed
Labels
maintenanceBoring but important stuff for the core devsBoring but important stuff for the core devs
Milestone
Description
Running make package
can create source and binary distributions. Here are the files/directories included in the source tarball:
$ tree -L 2
.
├── AUTHORSHIP.md
├── AUTHORS.md
├── CITATION.cff
├── CODE_OF_CONDUCT.md
├── LICENSE.txt
├── MANIFEST.in
├── PKG-INFO
├── pygmt
│ ├── accessors.py
│ ├── clib
│ ├── datasets
│ ├── exceptions.py
│ ├── figure.py
│ ├── helpers
│ ├── __init__.py
│ ├── io.py
│ ├── session_management.py
│ ├── sphinx_gallery.py
│ ├── src
│ └── tests
├── pygmt.egg-info
│ ├── dependency_links.txt
│ ├── PKG-INFO
│ ├── requires.txt
│ ├── SOURCES.txt
│ └── top_level.txt
├── pyproject.toml
├── README.rst
└── setup.cfg
8 directories, 22 files
AUTHORSHIP.md
is excluded inMANIFEST.in
. Why is it still here?- Exclude
CODE_OF_CONDUCT.md
from the tarball? - Exclude the whole
pygmt/tests
directory? The reasons are (1): tests are 536 KB and others are 900 KB. (2) Users can't run these tests due to the missing DVC files.
Metadata
Metadata
Assignees
Labels
maintenanceBoring but important stuff for the core devsBoring but important stuff for the core devs