Skip to content

Commit

Permalink
Merge pull request #388 from jstockwin/remove-tests-from-wheels
Browse files Browse the repository at this point in the history
Remove tests and docs from wheels
  • Loading branch information
jstockwin authored Jul 23, 2024
2 parents b09de64 + f633856 commit 74eb751
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
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 and docs are not included in binary distribution wheels (PyPi) and source distribution (sdist).

## [0.12.0] - 2023-11-10

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

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

0 comments on commit 74eb751

Please sign in to comment.