Skip to content

Commit

Permalink
add more files to the sdist, plus a check-manifest-based tox test tha…
Browse files Browse the repository at this point in the history
…t everything is included
  • Loading branch information
mahmoud committed Jul 18, 2017
1 parent cb14f43 commit de1bc3a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
7 changes: 5 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
recursive-include docs
include README.md LICENSE CHANGELOG.md
include README.md LICENSE CHANGELOG.md tox.ini requirements-test.txt .coveragerc Makefile pytest.ini .tox-coveragerc
exclude TODO.md appveyor.yml

graft docs
prune docs/_build
12 changes: 11 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py34,py35,py36,pypy,coverage-report
envlist = py26,py27,py34,py35,py36,pypy,coverage-report,packaging

[testenv]
changedir = .tox
Expand All @@ -14,3 +14,13 @@ deps = coverage
commands = coverage combine --rcfile {toxinidir}/.tox-coveragerc
coverage report --rcfile {toxinidir}/.tox-coveragerc
coverage html --rcfile {toxinidir}/.tox-coveragerc -d {toxinidir}/htmlcov


[testenv:packaging]
changedir = {toxinidir}
deps =
check-manifest==0.35
readme_renderer==17.2
commands =
check-manifest
python setup.py check --metadata --restructuredtext --strict

0 comments on commit de1bc3a

Please sign in to comment.