Skip to content

Commit 847b020

Browse files
committed
fixing MANIFEST.in
1 parent 3604ccc commit 847b020

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010
...
11+
12+
## [v0.1.3]
13+
### Fixed
14+
- MANIFEST.in was still not excluding things correctly.
15+
1116
## [v0.1.2]
1217
### Fixed
1318
- exclude .egg-info from source dist
@@ -33,7 +38,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3338
### Added
3439
- release to pypi
3540

36-
[Unreleased]: https://github.com/pfizer-opensource/bigwig-loader/compare/v0.1.2...HEAD
41+
[Unreleased]: https://github.com/pfizer-opensource/bigwig-loader/compare/v0.1.3...HEAD
42+
[v0.1.3]: https://github.com/pfizer-opensource/bigwig-loader/compare/v0.1.2...v0.1.3
3743
[v0.1.2]: https://github.com/pfizer-opensource/bigwig-loader/compare/v0.1.1...v0.1.2
3844
[v0.1.1]: https://github.com/pfizer-opensource/bigwig-loader/compare/v0.1.0...v0.1.1
3945
[v0.1.0]: https://github.com/pfizer-opensource/bigwig-loader/compare/v0.0.3...v0.1.0

MANIFEST.in

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
# MANIFEST.in
2-
exclude .gitignore
3-
exclude .github/*
42
exclude *.egg-info/*
3+
exclude .gitignore
4+
exclude .github/workflows/*
55
exclude benchmark/*
66
exclude docs/*
77
exclude examples/*
8-
exclude example_data/
8+
exclude example_data/*
99
exclude images/*
1010
exclude .flake8
1111
exclude .pre-commit-config.yaml
1212
exclude environment.yml
1313
exclude tmp/*
14-
exclude *.c
15-
14+
exclude bigwig_loader/*.c
1615
include example_data/some_intervals.tsv
1716
include example_data/some_positions.tsv

0 commit comments

Comments
 (0)