forked from PlasmaPy/PlasmaPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
40 lines (32 loc) · 829 Bytes
/
MANIFEST.in
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
# MANIFEST.in specifies the files are to be included in the source
# distribution (sdist) of PlasmaPy.
graft changelog
graft ci_requirements
graft docs
graft licenses
graft src
graft tests
graft tools
graft type_stubs
include *.ini
include *.ini *.toml *.yaml *.yml
include *.md
include *.py
include *.pyi
include *.rst
include *.txt
include .editorconfig
include .git-blame-ignore-revs
include .jupyter/*.py
include binder/requirements.txt
include CITATION.cff
include CODEOWNERS
global-exclude _build build _authors.rst
global-exclude *.o *.py[cod]
prune docs/api
# The following directory is only used to get the version right for
# editable installations.
prune src/plasmapy/_dev
# The following file needs to be in the sdist so that the version
# appears correctly on Read the Docs.
include src/plasmapy/_version.py