add missing files to tarball
This commit is contained in:
parent
91d5e1b0f4
commit
e4006839fc
|
@ -49,7 +49,11 @@ jobs:
|
||||||
python-version: '3.7'
|
python-version: '3.7'
|
||||||
|
|
||||||
- name: create tarball
|
- name: create tarball
|
||||||
run: python3 setup.py sdist
|
run: |
|
||||||
|
python3 setup.py sdist
|
||||||
|
# test whether tarball contains all files required for compiling
|
||||||
|
pip3 install dist/rapidfuzz-*.tar.gz
|
||||||
|
pip3 uninstall rapidfuzz --yes
|
||||||
|
|
||||||
- name: upload tarball
|
- name: upload tarball
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v1
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
include README.md
|
include README.md
|
||||||
include VERSION
|
include VERSION
|
||||||
include LICENSE
|
include LICENSE
|
||||||
recursive-include cpp/src *.hpp *.txx
|
|
||||||
recursive-include cpp/extern/boost *
|
recursive-include src/rapidfuzz-cpp/src *.hpp *.txx
|
||||||
recursive-include python/src *.hpp
|
recursive-include src/rapidfuzz-cpp/extern/boost *
|
||||||
|
recursive-include src/rapidfuzz-cpp/extern/difflib *
|
||||||
|
include src/rapidfuzz-cpp/LICENSE
|
||||||
|
|
Loading…
Reference in New Issue