Update MANIFEST and .gitattributes
* Modify `git archive` to include all source code so that creating a release source tarball is now done with `setup.py sdist` which uses the MANIFEST.in file to determine files to be included.
This commit is contained in:
parent
9e13f671ee
commit
f4e5fb446d
|
@ -1,13 +1,3 @@
|
|||
packaging export-ignore
|
||||
docs/build/ export-ignore
|
||||
docs/source/ export-ignore
|
||||
deluge/tests/ export-ignore
|
||||
deluge/scripts/ export-ignore
|
||||
setup.cfg export-ignore
|
||||
generate_pot.py export-ignore
|
||||
gen_web_gettext.py export-ignore
|
||||
deluge/ui/web/docs/ export-ignore
|
||||
|
||||
.gitattributes export-ignore
|
||||
.gitmodules export-ignore
|
||||
.gitignore export-ignore
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
include AUTHORS ChangeLog DEPENDS LICENSE msgfmt.py RELEASE-VERSION version.py
|
||||
include AUTHORS ChangeLog DEPENDS LICENSE msgfmt.py RELEASE-VERSION version.py README.rst
|
||||
|
||||
graft docs/man
|
||||
|
||||
include deluge/i18n/*.po
|
||||
recursive-exclude deluge/i18n LC_MESSAGES *.mo
|
||||
|
||||
graft deluge/plugins
|
||||
recursive-exclude deluge/plugins create_dev_link.sh *.pyc
|
||||
recursive-exclude deluge/plugins create_dev_link.sh *.pyc *.egg
|
||||
|
||||
prune deluge/tests
|
||||
graft deluge/ui/data
|
||||
|
|
Loading…
Reference in New Issue