Skip to content

Commit

Permalink
fix MANIFEST.in to include project sub-dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
stas00 committed Feb 23, 2019
1 parent bfe093b commit 0c127a0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

## 0.1.13.dev0 (Work In Progress)

-
- fix MANIFEST.in to include project sub-dirs


## 0.1.12 (2019-02-22)
Expand Down
19 changes: 12 additions & 7 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
include CONTRIBUTING.rst
include HISTORY.rst
include AUTHORS.md
include CONTRIBUTING.md
include CHANGES.md
include LICENSE
include README.rst
include README.md

recursive-include tests *
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
# include recursively
graft ipyexperiments
graft docs

recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
# exclude recursively
prune tests

# exclude matching extensions
global-exclude *.py[co]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def to_list(buffer): return list(filter(None, map(str.strip, buffer.splitlines()
name = 'ipyexperiments',
version = __version__,

packages = find_packages(include = ['ipyexperiments']),
packages = find_packages(),
include_package_data = True,

install_requires = requirements,
Expand Down

0 comments on commit 0c127a0

Please sign in to comment.