Skip to content

Commit

Permalink
Ignore vscode and PyCharm; Cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Feb 3, 2018
1 parent 450a738 commit 1570ef8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 38 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
.cache
.coverage
.eggs
.idea
.tox
.vscode
build/
doc/sphinx/_build/
doc/sphinx/_generated/
Expand All @@ -19,4 +21,4 @@ dist
*.prefs
*.project
*.pydevproject
npm-debug.log
npm-debug.log
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@ before_install:
# The branch 'travis-litmus' still has this enabled to investigate...
# - sudo apt-get install libneon27-dev
# - ./install_litmus.sh
install: pip install tox-travis
script: tox
install:
pip install tox-travis
script:
tox
4 changes: 2 additions & 2 deletions doc/sphinx/index.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.. _main-index:

#############################
#####################
WsgiDAV Documentation
#############################
#####################

:Project: WsgiDAV, https://github.com/mar10/wsgidav/
:Copyright: Licensed under `The MIT License <https://raw.github.com/mar10/wsgidav/master/LICENSE>`_
Expand Down
39 changes: 6 additions & 33 deletions setup.cfg
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/*

0 comments on commit 1570ef8

Please sign in to comment.