setup.py/MANIFEST.in: include missing files

Oops, we didn't include test.web in the previous release tarball, or the
tests under integration/ .
This commit is contained in:
Brian Warner 2017-01-18 16:27:12 -08:00
parent 6b373204d0
commit 9da041cf0e
2 changed files with 5 additions and 2 deletions

View File

@ -2,10 +2,12 @@ include README.rst
include COPYING.GPL COPYING.TGPPL.rst CREDITS Makefile NEWS.rst Tahoe.home include COPYING.GPL COPYING.TGPPL.rst CREDITS Makefile NEWS.rst Tahoe.home
include relnotes.txt include relnotes.txt
include Dockerfile include Dockerfile
include tox.ini include tox.ini .appveyor.yml .travis.yml
include .coveragerc
recursive-include src *.xhtml *.js *.png *.css *.svg *.txt recursive-include src *.xhtml *.js *.png *.css *.svg *.txt
graft docs graft docs
graft misc graft misc
graft static graft static
graft integration
global-exclude *~ *.pyc global-exclude *~ *.pyc

View File

@ -258,8 +258,9 @@ setup(name="tahoe-lafs", # also set in __init__.py
'allmydata.scripts', 'allmydata.scripts',
'allmydata.storage', 'allmydata.storage',
'allmydata.test', 'allmydata.test',
'allmydata.test.mutable',
'allmydata.test.cli', 'allmydata.test.cli',
'allmydata.test.mutable',
'allmydata.test.web',
'allmydata.util', 'allmydata.util',
'allmydata.web', 'allmydata.web',
'allmydata.windows', 'allmydata.windows',