Skip to content

Commit bbb6e71

Browse files
Prevent recursive build artifact inclusion (#621)
1 parent 7faf887 commit bbb6e71

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

MANIFEST.in

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Include all files under test/ directory in source distribution only
12
graft test
3+
4+
# Exclude Python bytecode
25
global-exclude *.pyc
3-
include baked_version
6+
global-exclude __pycache__

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Repository = "https://github.com/linode/linode_api4-python.git"
7070
version = { attr = "linode_api4.version.__version__" }
7171

7272
[tool.setuptools.packages.find]
73-
exclude = ['contrib', 'docs', 'test', 'test.*']
73+
exclude = ['contrib', 'docs', 'build', 'build.*', 'test', 'test.*']
7474

7575
[tool.isort]
7676
profile = "black"

0 commit comments

Comments
 (0)