Skip to content

Commit bbaac17

Browse files
authored
Fix manifest so src dist can be used to install or build a wheel (#189)
1 parent dc441ba commit bbaac17

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,6 @@ jobs:
2424
py.test -vv --cov=injector --cov-branch --cov-report html --cov-report term
2525
if which mypy; then mypy injector ; fi
2626
if which black; then black --check . ; fi
27+
check-manifest
2728
- name: Report coverage to Codecov
2829
uses: codecov/codecov-action@v1

MANIFEST.in

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
1-
include README.md
1+
include *.py
2+
include *.toml
3+
include *.txt
4+
include CHANGES
25
include COPYING
6+
include README.md
7+
include mypy.ini
8+
include pytest.ini
9+
recursive-include docs *.html
10+
recursive-include docs *.py
11+
recursive-include docs *.rst
12+
recursive-include docs Makefile

requirements-dev.txt

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ pytest-cov>=2.5.1
33
dataclasses;python_version<"3.7"
44
mypy;implementation_name=="cpython"
55
black;implementation_name=="cpython"
6+
check-manifest

0 commit comments

Comments
 (0)