-
Notifications
You must be signed in to change notification settings - Fork 2
/
MANIFEST.in
62 lines (55 loc) · 2.05 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# This file is part of MDTools.
# Copyright (C) 2021, The MDTools Development Team and all contributors
# listed in the file AUTHORS.rst
#
# MDTools is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# MDTools is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with MDTools. If not, see <http://www.gnu.org/licenses/>.
# Files to include in the source distribution (sdist). See
# https://packaging.python.org/guides/using-manifest-in/.
# Note that the built distribution (bdist) created from the sdist only
# contains files inside the package even if the sdist might contain
# additional files outside the package. See
# https://setuptools.pypa.io/en/latest/userguide/miscellaneous.html#build-process
# Commands are processed in the order they appear. In the case of
# conflicting commands, the last command wins.
# exclude <file-pattern>: Exclude all files matching <file-pattern>.
exclude .*
# include <file-pattern>: Include all files matching <file-pattern>.
include AUTHORS.rst
include CITATION.cff
include CONTRIBUTING.rst
include LICENSE.txt
include MANIFEST.in
include pyproject.toml
include README.rst
include requirements*.txt
include setup.py
# graft <dir-pattern>: Include all files under directories matching
# <dir-pattern>.
graft docs
# graft examples
graft scripts
graft src
# graft tests
# prune <dir-pattern>: Exclude all files under directories matching
# <dir-pattern>.
prune .github
prune .vscode
prune docs/buid
prune **/_sphinx_autosummary*
prune misc
prune **__pycache__
# global-exclude <file-pattern>: Exclude all files anywhere in the
# source tree matching <file-pattern>.
global-exclude .git*
global-exclude *.py[cod]