-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMANIFEST.in
25 lines (19 loc) · 831 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
# setup.py, setup.cfg and MANIFEST.in work together when creating distributions
# using `python setup.py sdist bdist_wheel`
# Note: MANIFEST.in does not affect binary distributions such as wheels.
# MANIFEST.in is part of the distutils which setup.py internally uses.
# It is needed when you need to package additional files that are not
# automatically included in a source distribution.
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#manifest-in
include AUTHORS.rst
include CONTRIBUTING.rst
include CHANGELOG.rst
include LICENSE
include README.rst
recursive-include examples *
recursive-exclude examples/model_store *
recursive-exclude tests *
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
recursive-include docs *.rst conf.py *.jpg *.png *.gif
recursive-exclude docs/_build *