[py3] Include requirements.txt and tests in sdist build

This will help make it easier to build and run tests on py2

#495
This commit is contained in:
Dan Smith 2019-02-10 10:14:02 -08:00
parent c1ef01e4e3
commit 1d4ed54499
3 changed files with 3 additions and 2 deletions

View File

@ -4,3 +4,4 @@ include share/chirp.png
include share/*.1
include stock_configs/*
include COPYING
include *requirements.txt

View File

@ -1,4 +1,4 @@
six
PyGObject
PyGObject;python_version>="3.0"
pyserial
future

View File

@ -127,7 +127,7 @@ def default_build():
setup(
name="chirp",
packages=["chirp", "chirp.drivers", "chirp.ui"],
packages=["chirp", "chirp.drivers", "chirp.ui", "tests", "tests.unit"],
version=CHIRP_VERSION,
scripts=["chirpw", "rpttool"],
data_files=[('share/applications', desktop_files),