-
Notifications
You must be signed in to change notification settings - Fork 238
/
MANIFEST.in
21 lines (20 loc) · 1.16 KB
/
MANIFEST.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
recursive-include src/cryptoadvance/specter/templates *
recursive-include src/cryptoadvance/specter/static *
recursive-include src/*/specterext/*/templates *
recursive-include src/*/specterext/*/static *
recursive-include src/cryptoadvance/specter/services/templates *
recursive-include src/cryptoadvance/specter/services/static *
recursive-include src/cryptoadvance/specter/services/*/templates *
recursive-include src/cryptoadvance/specter/services/*/static *
recursive-include src/cryptoadvance/specter/translations/*/LC_MESSAGES *.mo
recursive-include src/cryptoadvance/specter/translations/*/LC_MESSAGES *.po
include requirements.txt
# just by using using `setuptools_scm` it modifies the way files are added to the sdist.
# This was a cause of major headache in order to avoid large binaries e.g. in
# `pyinstaller/bitcoind` to not be added. See also this
# [chapter](https://github.com/pypa/setuptools_scm/#file-finders-hook-makes-most-of-manifestin-unnecessary)
# ... which might make the above not necessary but the below very needed:
exclude .gitattributes .gitignore pyinstaller .pre-commit.config.yaml
prune pyinstaller/bitcoind
prune pyinstaller/tor
prune .github