forked from mar10/wsgidav
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
15 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,10 @@ | ||
# Set default to 'daily build' | ||
[egg_info] | ||
tag_build = .dev | ||
tag_date = 1 | ||
|
||
# Set sdist format to tar.gz | ||
# NOTE: tar doesn't seem to run on windows | ||
[sdist] | ||
#formats = gztar | ||
|
||
[bdist_wheel] | ||
universal = 1 | ||
|
||
# Define 'release' alias to strip '.dev-DATE' | ||
[aliases] | ||
#release = egg_info -RDb '' | ||
|
||
# '$sudo python setup.py pypi_daily' will create and upload a daily build | ||
# e.g. 'WsgiDAV-1.2.0b1.dev-20150419.tar.gz' | ||
# (Note that we cannot create and upload a bdist_msi here, because the version format must be a.b.c) | ||
|
||
# 2017-02-21: bdist_wheel throws '--version must be a.b.c.d (all integers)' | ||
# So only add this to the 'pypi_release' script | ||
#pypi_daily = egg_info --tag-build=.dev --tag-date sdist bdist_wheel register upload --sign '--identity=Martin Wendt' | ||
pypi_daily = egg_info --tag-build=.dev --tag-date sdist register upload --sign '--identity=Martin Wendt' | ||
|
||
# Define 'pypi_release' alias to strip '.dev-DATE' | ||
# NOTE: | ||
# A cx_Freeze bug prevents to upload bdis_msi. We can workaround by applying this | ||
# patch to the Python environment, e.g. `<venv>\Lib\site-packages\cx_Freeze\windist.py`: | ||
# https://bitbucket.org/anthony_tuininga/cx_freeze/issue/130/bdist_msi-upload-on-pypi-fails | ||
|
||
pypi_release = egg_info --tag-build="" -RD sdist bdist_wheel register upload --sign --identity="Martin Wendt" | ||
|
||
pypi_release_with_msi = egg_info --tag-build="" -RD sdist bdist_wheel bdist_msi register upload --sign --identity="Martin Wendt" | ||
[metadata] | ||
license_file = LICENSE | ||
|
||
pypi_release_msi_only = egg_info --tag-build="" -RD bdist_msi register upload --sign --identity="Martin Wendt" | ||
[check-manifest] | ||
ignore = | ||
docs/sphinx-build | ||
docs/sphinx-build/* |