Skip to content

Commit

Permalink
Fix manifest so src dist can be used to install or build a wheel (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
wooyek committed Aug 31, 2021
1 parent dc441ba commit bbaac17
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ jobs:
py.test -vv --cov=injector --cov-branch --cov-report html --cov-report term
if which mypy; then mypy injector ; fi
if which black; then black --check . ; fi
check-manifest
- name: Report coverage to Codecov
uses: codecov/codecov-action@v1
12 changes: 11 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
include README.md
include *.py
include *.toml
include *.txt
include CHANGES
include COPYING
include README.md
include mypy.ini
include pytest.ini
recursive-include docs *.html
recursive-include docs *.py
recursive-include docs *.rst
recursive-include docs Makefile
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ pytest-cov>=2.5.1
dataclasses;python_version<"3.7"
mypy;implementation_name=="cpython"
black;implementation_name=="cpython"
check-manifest

0 comments on commit bbaac17

Please sign in to comment.