Skip to content

Commit 34fdcc0

Browse files
committed
Add .git files
1 parent f829808 commit 34fdcc0

File tree

7 files changed

+334
-17
lines changed

7 files changed

+334
-17
lines changed

.gitattributes

Lines changed: 213 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,213 @@
1+
# Basic .gitattributes for a python repo.
2+
3+
# Source files
4+
# ============
5+
*.pxd text
6+
*.py text
7+
*.py3 text
8+
*.pyw text
9+
*.pyx text
10+
11+
# Binary files
12+
# ============
13+
*.db binary
14+
*.p binary
15+
*.pkl binary
16+
*.pyc binary
17+
*.pyd binary
18+
*.pyo binary
19+
20+
# Note: .db, .p, and .pkl files are associated
21+
# with the python modules ``pickle``, ``dbm.*``,
22+
# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
23+
# (among others).## GITATTRIBUTES FOR WEB PROJECTS
24+
#
25+
# These settings are for any web project.
26+
#
27+
# Details per file setting:
28+
# text These files should be normalized (i.e. convert CRLF to LF).
29+
# binary These files are binary and should be left untouched.
30+
#
31+
# Note that binary is a macro for -text -diff.
32+
######################################################################
33+
34+
## AUTO-DETECT
35+
## Handle line endings automatically for files detected as
36+
## text and leave all files detected as binary untouched.
37+
## This will handle all files NOT defined below.
38+
* text=auto
39+
40+
## SOURCE CODE
41+
*.bat text eol=crlf
42+
*.coffee text
43+
*.css text
44+
*.htm text
45+
*.html text
46+
*.inc text
47+
*.ini text
48+
*.js text
49+
*.json text
50+
*.jsx text
51+
*.less text
52+
*.od text
53+
*.onlydata text
54+
*.php text
55+
*.pl text
56+
*.py text
57+
*.rb text
58+
*.sass text
59+
*.scm text
60+
*.scss text
61+
*.sh text eol=lf
62+
*.sql text
63+
*.styl text
64+
*.tag text
65+
*.ts text
66+
*.tsx text
67+
*.xml text
68+
*.xhtml text
69+
70+
## DOCKER
71+
*.dockerignore text
72+
Dockerfile text
73+
74+
## DOCUMENTATION
75+
*.markdown text
76+
*.md text
77+
*.mdwn text
78+
*.mdown text
79+
*.mkd text
80+
*.mkdn text
81+
*.mdtxt text
82+
*.mdtext text
83+
*.txt text
84+
AUTHORS text
85+
CHANGELOG text
86+
CHANGES text
87+
CONTRIBUTING text
88+
COPYING text
89+
copyright text
90+
*COPYRIGHT* text
91+
INSTALL text
92+
license text
93+
LICENSE text
94+
NEWS text
95+
readme text
96+
*README* text
97+
TODO text
98+
99+
## TEMPLATES
100+
*.dot text
101+
*.ejs text
102+
*.haml text
103+
*.handlebars text
104+
*.hbs text
105+
*.hbt text
106+
*.jade text
107+
*.latte text
108+
*.mustache text
109+
*.njk text
110+
*.phtml text
111+
*.tmpl text
112+
*.tpl text
113+
*.twig text
114+
115+
## LINTERS
116+
.csslintrc text
117+
.eslintrc text
118+
.htmlhintrc text
119+
.jscsrc text
120+
.jshintrc text
121+
.jshintignore text
122+
.stylelintrc text
123+
124+
## CONFIGS
125+
*.bowerrc text
126+
*.cnf text
127+
*.conf text
128+
*.config text
129+
.browserslistrc text
130+
.editorconfig text
131+
.gitattributes text
132+
.gitconfig text
133+
.htaccess text
134+
*.npmignore text
135+
*.yaml text
136+
*.yml text
137+
browserslist text
138+
Makefile text
139+
makefile text
140+
141+
## HEROKU
142+
Procfile text
143+
.slugignore text
144+
145+
## GRAPHICS
146+
*.ai binary
147+
*.bmp binary
148+
*.eps binary
149+
*.gif binary
150+
*.ico binary
151+
*.jng binary
152+
*.jp2 binary
153+
*.jpg binary
154+
*.jpeg binary
155+
*.jpx binary
156+
*.jxr binary
157+
*.pdf binary
158+
*.png binary
159+
*.psb binary
160+
*.psd binary
161+
*.svg text
162+
*.svgz binary
163+
*.tif binary
164+
*.tiff binary
165+
*.wbmp binary
166+
*.webp binary
167+
168+
## AUDIO
169+
*.kar binary
170+
*.m4a binary
171+
*.mid binary
172+
*.midi binary
173+
*.mp3 binary
174+
*.ogg binary
175+
*.ra binary
176+
177+
## VIDEO
178+
*.3gpp binary
179+
*.3gp binary
180+
*.as binary
181+
*.asf binary
182+
*.asx binary
183+
*.fla binary
184+
*.flv binary
185+
*.m4v binary
186+
*.mng binary
187+
*.mov binary
188+
*.mp4 binary
189+
*.mpeg binary
190+
*.mpg binary
191+
*.ogv binary
192+
*.swc binary
193+
*.swf binary
194+
*.webm binary
195+
196+
## ARCHIVES
197+
*.7z binary
198+
*.gz binary
199+
*.jar binary
200+
*.rar binary
201+
*.tar binary
202+
*.zip binary
203+
204+
## FONTS
205+
*.ttf binary
206+
*.eot binary
207+
*.otf binary
208+
*.woff binary
209+
*.woff2 binary
210+
211+
## EXECUTABLES
212+
*.exe binary
213+
*.pyc binary

.gitignore

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
2+
# Created by https://www.gitignore.io/api/python,visualstudiocode
3+
# Edit at https://www.gitignore.io/?templates=python,visualstudiocode
4+
5+
### Python ###
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
pip-wheel-metadata/
29+
share/python-wheels/
30+
*.egg-info/
31+
.installed.cfg
32+
*.egg
33+
MANIFEST
34+
35+
# PyInstaller
36+
# Usually these files are written by a python script from a template
37+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
38+
*.manifest
39+
*.spec
40+
41+
# Installer logs
42+
pip-log.txt
43+
pip-delete-this-directory.txt
44+
45+
# Unit test / coverage reports
46+
htmlcov/
47+
.tox/
48+
.nox/
49+
.coverage
50+
.coverage.*
51+
.cache
52+
nosetests.xml
53+
coverage.xml
54+
*.cover
55+
.hypothesis/
56+
.pytest_cache/
57+
58+
# Translations
59+
*.mo
60+
*.pot
61+
62+
# Scrapy stuff:
63+
.scrapy
64+
65+
# Sphinx documentation
66+
docs/_build/
67+
68+
# PyBuilder
69+
target/
70+
71+
# pyenv
72+
.python-version
73+
74+
# pipenv
75+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
76+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
77+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
78+
# install all needed dependencies.
79+
#Pipfile.lock
80+
81+
# celery beat schedule file
82+
celerybeat-schedule
83+
84+
# SageMath parsed files
85+
*.sage.py
86+
87+
# Spyder project settings
88+
.spyderproject
89+
.spyproject
90+
91+
# Rope project settings
92+
.ropeproject
93+
94+
# Mr Developer
95+
.mr.developer.cfg
96+
.project
97+
.pydevproject
98+
99+
# mkdocs documentation
100+
/site
101+
102+
# mypy
103+
.mypy_cache/
104+
.dmypy.json
105+
dmypy.json
106+
107+
# Pyre type checker
108+
.pyre/
109+
110+
### VisualStudioCode ###
111+
.vscode/*
112+
113+
### VisualStudioCode Patch ###
114+
# Ignore all local history of files
115+
.history
116+
117+
# End of https://www.gitignore.io/api/python,visualstudiocode
118+
119+
out/
120+
testing/
121+
.vscode/

.vscode/settings.json

Lines changed: 0 additions & 17 deletions
This file was deleted.
-4.66 KB
Binary file not shown.
-1.3 KB
Binary file not shown.
-1.44 KB
Binary file not shown.
-4.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)