Skip to content

Commit

Permalink
Remove unnecessary files from Python package (#189)
Browse files Browse the repository at this point in the history
These files were included in the wheel but are unnecessary for the
library to function. This indirectly fixes #188 since a releasenote file
name is too long for Windows.
  • Loading branch information
Kyle-Verhoog committed Aug 27, 2024
1 parent c5006aa commit 64a2580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD 3",
packages=find_packages(exclude=["tests*"]),
packages=find_packages(exclude=["tests*", "releasenotes", "scripts"]),
package_data={"ddapm_test_agent": ["py.typed"]},
python_requires=">=3.8",
install_requires=[
Expand Down

0 comments on commit 64a2580

Please sign in to comment.