Skip to content

Commit 020bdd6

Browse files
authored
Merge pull request #751 from Axelrod-Python/gitignore
Add standard python content to .gitignore
2 parents 0d8f3ca + 8529cf6 commit 020bdd6

File tree

1 file changed

+95
-10
lines changed

1 file changed

+95
-10
lines changed

.gitignore

Lines changed: 95 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,102 @@
1-
*pyc
2-
*.DS_Store
3-
site/
4-
build/
5-
_build/
6-
*.log
7-
dist/
8-
MANIFEST
9-
Axelrod.egg-info
10-
.hypothesis/
1+
# Axelrod Specific
112
basic_strategies.csv
123
cache.txt
134
test.csv
145
summary.csv
156
basic_tournament.csv
167
test_outputs/*csv
178
test_outputs/*cache
9+
10+
# Mac Specific
11+
*.DS_Store
12+
13+
# Byte-compiled / optimized / DLL files
14+
__pycache__/
15+
*.py[cod]
16+
*$py.class
17+
18+
# C extensions
19+
*.so
20+
21+
# Distribution / packaging
22+
.Python
23+
env/
24+
build/
25+
develop-eggs/
26+
dist/
27+
downloads/
28+
eggs/
29+
.eggs/
30+
lib/
31+
lib64/
32+
parts/
33+
sdist/
34+
var/
35+
*.egg-info/
36+
.installed.cfg
37+
*.egg
38+
39+
# PyInstaller
40+
# Usually these files are written by a python script from a template
41+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
42+
*.manifest
43+
*.spec
44+
45+
# Installer logs
46+
pip-log.txt
47+
pip-delete-this-directory.txt
48+
49+
# Unit test / coverage reports
50+
htmlcov/
51+
.tox/
52+
.coverage
53+
.coverage.*
54+
.cache
55+
nosetests.xml
56+
coverage.xml
57+
*,cover
58+
.hypothesis/
59+
60+
# Translations
61+
*.mo
62+
*.pot
63+
64+
# Django stuff:
65+
*.log
66+
local_settings.py
67+
68+
# Flask stuff:
69+
instance/
70+
.webassets-cache
71+
72+
# Scrapy stuff:
73+
.scrapy
74+
75+
# Sphinx documentation
76+
docs/_build/
77+
78+
# PyBuilder
79+
target/
80+
81+
# Jupyter Notebook
82+
.ipynb_checkpoints
83+
84+
# pyenv
85+
.python-version
86+
87+
# celery beat schedule file
88+
celerybeat-schedule
89+
90+
# dotenv
91+
.env
92+
93+
# virtualenv
94+
.venv/
95+
venv/
96+
ENV/
97+
98+
# Spyder project settings
99+
.spyderproject
100+
101+
# Rope project settings
102+
.ropeproject

0 commit comments

Comments
 (0)