diff options
author | Bernát Gábor <gaborjbernat@gmail.com> | 2018-10-22 08:59:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-22 08:59:46 +0300 |
commit | 4c03d419fb686975e04cb12405980a579dfb44f4 (patch) | |
tree | f8e604aa39a2c166eef750ea1e276842d88ea81f /.gitignore | |
parent | c0ef1b3b36fa426d548d9085047d860144fa8730 (diff) | |
download | tox-git-4c03d419fb686975e04cb12405980a579dfb44f4.tar.gz |
Split up packaging for better separation of concerns (#1069)
* packaging
* move tests
* absolute path gitignore
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 38 |
1 files changed, 16 insertions, 22 deletions
@@ -1,34 +1,28 @@ +# python *.pyc *.pyo *.swp -*.html -*.class -*.orig -*.rej -*~ __pycache__ -src/tox/version.py -build -dist -doc/_build/ -tox.egg-info -.tox -.venv -.cache -.python-version +# packaging folders +/src/tox/version.py +/build/ +/dist/ +/src/tox.egg-info -coverage.xml -htmlcov +# tox working folder +/.tox -.idea -.vscode +# IDEs +/.idea +/.vscode -.eggs/ -py27/ +# tools +/.*_cache -.*_cache -_draft.rst +# documentation +/docs/_draft.rst +# release credentials.json |