Skip to content

Commit

Permalink
Remove tests from wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
paulopaixaoamaral committed Jul 23, 2024
1 parent b09de64 commit 891ae07
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added
- Added extra filtering methods for ElementList
- Make sure tests are not included in binary distribution wheels (PyPi) and source distribution (sdist).

## [0.12.0] - 2023-11-10

Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
include README.md
include LICENSE
prune tests
prune tests/*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name="py-pdf-parser",
packages=find_packages(),
packages=find_packages(exclude=["tests", "tests.*"]),
exclude=["tests.*", "tests", "docs", "docs.*"],
version="0.12.0",
url="https://github.com/jstockwin/py-pdf-parser",
Expand Down

0 comments on commit 891ae07

Please sign in to comment.