Skip to content

Commit

Permalink
cleanup generated folders and git ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
loechel committed Apr 3, 2018
1 parent 9465acb commit 92710af
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 31 deletions.
94 changes: 65 additions & 29 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,35 +1,71 @@
*.mo
# Python
*.py[cod]
.coverage*
pip-selfcheck.json
pyvenv.cfg
/.python-version
/*.egg-info
/.eggs/
.cache
/.Python
/.cache

#PyENV
/.python-version

# Packages / zc.buildout
*.egg
*.egg-info
/local.cfg
/.installed.cfg
/.mr.developer.cfg
/_build/
/bin/
/build/
/develop-eggs/
/dist/
/eggs/
/etc/
/include/
/lib/
/local/
/parts/
/reports/
/sdist/
/share/
/src-mrd/
/var/

# Installer logs
pip-log.txt
pip-selfcheck.json
.plone.versioncheck.cache
.plone.versioncheck.tracked.json

# Unit test / coverage reports
/.coverage*
/coverage.xml
/.tox
.pytest_cache

#Translations
*.mo

#Mr Developer
.mr.developer.cfg

# local config
local.cfg
secret.cfg

# Codeintel
.codeintel

# Editors specific
/.idea/
/.Python
/.ropeproject/
/.project
/.pydevproject
/.tox
/bin
/build
/develop-eggs
/dist
/reports
/downloads
/eggs
/fake-eggs
/htmlcov
/report-*.html
/include
/lib
/share
/local.cfg
/parts
/src/*.egg-info
/var
coverage.xml
docs/doctrees
docs/html

# Import Data
/*.csv

# JavaScript specific
node_modules/

# MAC specifics
.DS_Store
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[build_sphinx]
source-dir = docs/source
build-dir = docs
build-dir = _build/docs
all_files = 1

[upload_sphinx]
upload-dir = docs/html
upload-dir = _build/docs/html

[check-manifest]
ignore =
Expand Down

0 comments on commit 92710af

Please sign in to comment.