aboutsummaryrefslogtreecommitdiffstats
path: root/.gitignore
diff options
context:
space:
mode:
authorAdam Spiers <github@adamspiers.org>2018-05-16 16:54:33 +0100
committerGitHub <noreply@github.com>2018-05-16 16:54:33 +0100
commitc091a477d14ae74bb7f1e08d7c5bc5c3bcfd7d20 (patch)
tree01abbbeea250e834c35bed73ac84934c52705ae8 /.gitignore
parent9a741f07167dcb6cc81a8f87036d1ea75c4270d3 (diff)
parent02e79d29f71feb795779d97825644ad4172598ad (diff)
downloadgit-deps-c091a477d14ae74bb7f1e08d7c5bc5c3bcfd7d20.tar.gz
Merge pull request #71 from aspiers/module
package as a Python module
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore42
1 files changed, 42 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..21a3df8
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,42 @@
+# Temporary and binary files
+*~
+*.py[cod]
+*.so
+*.cfg
+!setup.cfg
+*.orig
+*.log
+*.pot
+__pycache__/*
+.cache/*
+.*.swp
+
+# Project files
+.ropeproject
+.project
+.pydevproject
+.settings
+.idea
+
+# Package files
+*.egg
+*.eggs/
+.installed.cfg
+*.egg-info
+
+# Unittest and coverage
+htmlcov/*
+.coverage
+.tox
+junit.xml
+coverage.xml
+/.pytest_cache/
+
+# Build and docs folder/files
+build/*
+dist/*
+sdist/*
+docs/api/*
+docs/_build/*
+cover/*
+MANIFEST