Skip to content

Commit 6697904

Browse files
committed
init for eacl2021
0 parents  commit 6697904

File tree

96 files changed

+207880
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+207880
-0
lines changed

.gitignore

Lines changed: 200 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Python template
3+
# Byte-compiled / optimized / DLL files
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
8+
# C extensions
9+
*.so
10+
11+
# Distribution / packaging
12+
.Python
13+
build/
14+
develop-eggs/
15+
dist/
16+
downloads/
17+
eggs/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
wheels/
25+
pip-wheel-metadata/
26+
share/python-wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
MANIFEST
31+
32+
# PyInstaller
33+
# Usually these files are written by a python script from a template
34+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
35+
*.manifest
36+
*.spec
37+
38+
# Installer logs
39+
pip-log.txt
40+
pip-delete-this-directory.txt
41+
42+
# Unit test / coverage reports
43+
htmlcov/
44+
.tox/
45+
.nox/
46+
.coverage
47+
.coverage.*
48+
.cache
49+
nosetests.xml
50+
coverage.xml
51+
*.cover
52+
.hypothesis/
53+
.pytest_cache/
54+
55+
# Translations
56+
*.mo
57+
*.pot
58+
59+
# Django stuff:
60+
*.log
61+
local_settings.py
62+
db.sqlite3
63+
db.sqlite3-journal
64+
65+
# Flask stuff:
66+
instance/
67+
.webassets-cache
68+
69+
# Scrapy stuff:
70+
.scrapy
71+
72+
# Sphinx documentation
73+
docs/_build/
74+
75+
# PyBuilder
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
.python-version
87+
88+
# pipenv
89+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
90+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
91+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
92+
# install all needed dependencies.
93+
#Pipfile.lock
94+
95+
# celery beat schedule file
96+
celerybeat-schedule
97+
98+
# SageMath parsed files
99+
*.sage.py
100+
101+
# Environments
102+
.env
103+
.venv
104+
env/
105+
venv/
106+
ENV/
107+
env.bak/
108+
venv.bak/
109+
110+
# Spyder project settings
111+
.spyderproject
112+
.spyproject
113+
114+
# Rope project settings
115+
.ropeproject
116+
117+
# mkdocs documentation
118+
/site
119+
120+
# mypy
121+
.mypy_cache/
122+
.dmypy.json
123+
dmypy.json
124+
125+
# Pyre type checker
126+
.pyre/
127+
128+
### JetBrains template
129+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
130+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
131+
132+
# User-specific stuff
133+
.idea/**/workspace.xml
134+
.idea/**/tasks.xml
135+
.idea/**/usage.statistics.xml
136+
.idea/**/dictionaries
137+
.idea/**/shelf
138+
139+
# Generated files
140+
.idea/**/contentModel.xml
141+
142+
# Sensitive or high-churn files
143+
.idea/**/dataSources/
144+
.idea/**/dataSources.ids
145+
.idea/**/dataSources.local.xml
146+
.idea/**/sqlDataSources.xml
147+
.idea/**/dynamic.xml
148+
.idea/**/uiDesigner.xml
149+
.idea/**/dbnavigator.xml
150+
151+
# Gradle
152+
.idea/**/gradle.xml
153+
.idea/**/libraries
154+
155+
# Gradle and Maven with auto-import
156+
# When using Gradle or Maven with auto-import, you should exclude module files,
157+
# since they will be recreated, and may cause churn. Uncomment if using
158+
# auto-import.
159+
# .idea/modules.xml
160+
# .idea/*.iml
161+
# .idea/modules
162+
# *.iml
163+
# *.ipr
164+
165+
# CMake
166+
cmake-build-*/
167+
168+
# Mongo Explorer plugin
169+
.idea/**/mongoSettings.xml
170+
171+
# File-based project format
172+
*.iws
173+
174+
# IntelliJ
175+
out/
176+
177+
# mpeltonen/sbt-idea plugin
178+
.idea_modules/
179+
180+
# JIRA plugin
181+
atlassian-ide-plugin.xml
182+
183+
# Cursive Clojure plugin
184+
.idea/replstate.xml
185+
186+
# Crashlytics plugin (for Android Studio and IntelliJ)
187+
com_crashlytics_export_strings.xml
188+
crashlytics.properties
189+
crashlytics-build.properties
190+
fabric.properties
191+
192+
# Editor-based Rest Client
193+
.idea/httpRequests
194+
195+
# Android studio 3.1+ serialized cache file
196+
.idea/caches/build_file_checksums.ser
197+
198+
# OSX
199+
#
200+
.DS_Store

0 commit comments

Comments
 (0)