forked from betsee/betse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMANIFEST.in
40 lines (35 loc) · 1.44 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
# --------------------( LICENSE )--------------------
# Copyright 2014-2023 by Alexis Pietak & Cecil Curry.
# See "LICENSE" for further details.
#
# --------------------( SYNOPSIS )--------------------
# Template with which setuptools generates this project's "MANIFEST" file.
# ....................{ INCLUDE }....................
# Include all requisite top-level installation-time files.
include LICENSE
include MANIFEST.in
include README.rst
include conftest.py
include pyproject.toml
include pytest.ini
include setup.cfg
include setup.py
include test
# ....................{ INCLUDE ~ recursive }....................
# Include all requisite data (i.e., external non-Python files internally
# required by one or more Python subpackages).
recursive-include betse/data *
# Include all requisite project-specific py.test and setuptools subpackages.
#
# Note that these subpackages are *ONLY* required at installation time and
# hence omitted from the "packages" key passed to the setup() function by
# "setup.py". Welcome to Setuptools Hell, dear friend.
recursive-include betse_setup *
recursive-include betse_test *
# Include all optional documentation.
recursive-include doc *
# ....................{ EXCLUDE }....................
# Exclude all ignorable cache files.
recursive-exclude * __pycache__
recursive-exclude * *.pyc
recursive-exclude * *.pyo