Skip to content

Commit b3a90ce

Browse files
committed
Initial commit
0 parents  commit b3a90ce

File tree

213 files changed

+38216
-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.

213 files changed

+38216
-0
lines changed

.circleci/config.yml

+136
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
# TODO: Use caching
2+
version: 2
3+
jobs:
4+
lint:
5+
docker:
6+
- image: circleci/python:3.6
7+
steps:
8+
- checkout
9+
- run:
10+
command: |
11+
sudo apt-get update && sudo apt-get install -y --no-install-recommends libpython3.5-dev python3.5-dev
12+
sudo pip install poetry
13+
poetry config settings.virtualenvs.create false
14+
sudo pip install tox
15+
- run: tox -e lint
16+
test:
17+
# environment:
18+
# CC_TEST_REPORTER_ID: CIRCLECI_CC_TEST_REPORTER_ID
19+
docker:
20+
- image: circleci/python:3.6
21+
steps:
22+
- checkout
23+
- run:
24+
name: Prepare system
25+
command: |
26+
sudo apt-get update && sudo apt-get install -y --no-install-recommends libpython3.5-dev python3.5-dev
27+
sudo pip install poetry
28+
poetry config settings.virtualenvs.create false
29+
sudo pip install tox
30+
- run:
31+
name: CodeClimate before-build
32+
command: |
33+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
34+
chmod +x ./cc-test-reporter
35+
./cc-test-reporter before-build
36+
- run:
37+
name: Run Python tests
38+
command: tox -e py
39+
- run:
40+
name: CodeClimate combine and upload coverage
41+
command: |
42+
./cc-test-reporter after-build -t coverage.py --exit-code $?
43+
./cc-test-reporter format-coverage -t coverage.py coverage.xml
44+
./cc-test-reporter upload-coverage || true
45+
pages:
46+
docker:
47+
- image: circleci/python:3.6
48+
steps:
49+
- add_ssh_keys:
50+
fingerprints:
51+
- "f3:65:88:37:1e:8d:9b:dc:22:40:9f:c2:2d:1c:a4:36"
52+
- checkout
53+
- run:
54+
name: Prepare system
55+
command: |
56+
sudo apt-get update && sudo apt-get install -y --no-install-recommends libpython3.5-dev python3.5-dev openssh-client
57+
sudo pip install poetry
58+
poetry config settings.virtualenvs.create false
59+
sudo pip install tox
60+
- run:
61+
name: Retrieve GH pages
62+
command: |
63+
sudo ssh-keyscan github.com >> ~/.ssh/known_hosts
64+
sudo chmod 644 ~/.ssh/known_hosts
65+
git clone --branch gh-pages [email protected]:Unbabel/OpenKiwi.git gh-pages
66+
- run:
67+
name: Generate and upload GH pages
68+
command: |
69+
tox -e gh-pages
70+
git config --global user.email "[email protected]"
71+
git config --global user.name "GitLab CI"
72+
export lasttag=`git rev-parse --short HEAD`
73+
cd gh-pages
74+
git add .
75+
git diff-index --quiet HEAD || git commit -m "Update docs for $lasttag [ci skip]"
76+
git push [email protected]:Unbabel/OpenKiwi.git gh-pages
77+
pypi:
78+
docker:
79+
- image: circleci/python:3.6
80+
steps:
81+
- checkout
82+
- run:
83+
name: Prepare system
84+
command: |
85+
sudo pip install poetry
86+
- run:
87+
name: Upload to PyPI index
88+
command: poetry publish --build -u ${PYPI_REPOSITORY_USERNAME} -p ${PYPI_REPOSITORY_PASSWORD}
89+
90+
workflows:
91+
version: 2
92+
check:
93+
jobs:
94+
- lint
95+
- test
96+
- pages:
97+
type: approval
98+
requires:
99+
- lint
100+
- test
101+
filters:
102+
branches:
103+
only: master
104+
check-and-publish:
105+
jobs:
106+
- lint:
107+
filters:
108+
tags:
109+
only: /[0-9]+\.[0-9]+\.[0-9]+/
110+
branches:
111+
ignore: /.*/
112+
- test:
113+
filters:
114+
tags:
115+
only: /[0-9]+\.[0-9]+\.[0-9]+/
116+
branches:
117+
ignore: /.*/
118+
- pages:
119+
requires:
120+
- lint
121+
- test
122+
filters:
123+
tags:
124+
only: /[0-9]+\.[0-9]+\.[0-9]+/
125+
branches:
126+
ignore: /.*/
127+
- pypi:
128+
requires:
129+
- lint
130+
- test
131+
- pages
132+
filters:
133+
tags:
134+
only: /[0-9]+\.[0-9]+\.[0-9]+/
135+
branches:
136+
ignore: /.*/

.editorconfig

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 4
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
charset = utf-8
11+
end_of_line = lf
12+
max_line_length = 80
13+
14+
[*.json]
15+
indent_size = 2
16+
17+
[*.bat]
18+
indent_style = tab
19+
end_of_line = crlf
20+
21+
[LICENSE]
22+
insert_final_newline = false
23+
24+
[Makefile]
25+
indent_style = tab

.github/ISSUE_TEMPLATE/bug_report.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Use data '...'
17+
3. Run '....' with arguments '...'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Environment (please complete the following information):**
27+
- OS: [e.g. Linux]
28+
- OpenKiwi version [e.g. 0.1.0]
29+
- Python version
30+
31+
**Additional context**
32+
Add any other context about the problem here.
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.gitignore

+148
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
# Kiwi related stuff
2+
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+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
# Usually these files are written by a python script from a template
32+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
.hypothesis/
50+
.pytest_cache/
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Django stuff:
57+
*.log
58+
local_settings.py
59+
db.sqlite3
60+
61+
# Flask stuff:
62+
instance/
63+
.webassets-cache
64+
65+
# Scrapy stuff:
66+
.scrapy
67+
68+
# Sphinx documentation
69+
docs/_build/
70+
71+
# PyBuilder
72+
target/
73+
74+
# Jupyter Notebook
75+
.ipynb_checkpoints
76+
77+
# pyenv
78+
.python-version
79+
80+
# celery beat schedule file
81+
celerybeat-schedule
82+
83+
# SageMath parsed files
84+
*.sage.py
85+
86+
# Environments
87+
.env
88+
.venv
89+
env/
90+
venv/
91+
ENV/
92+
env.bak/
93+
venv.bak/
94+
95+
# Spyder project settings
96+
.spyderproject
97+
.spyproject
98+
99+
# Rope project settings
100+
.ropeproject
101+
102+
# mkdocs documentation
103+
/site
104+
105+
# mypy
106+
.mypy_cache/
107+
108+
# vscode
109+
.vscode
110+
111+
# Emacs Autosave
112+
*~
113+
\#*\#
114+
.\#*
115+
116+
# Data Folder
117+
/data/
118+
119+
120+
# Logs Folder
121+
log/
122+
123+
# torchtext vectors cache
124+
.vector_cache
125+
126+
# MLFlow directory
127+
mlruns/
128+
129+
# local run directory
130+
runs/
131+
132+
# Pycharm project
133+
.idea/
134+
135+
# Mac ignore
136+
.DS_Store
137+
138+
# Folder used for save predictions
139+
/predictions/
140+
141+
# Local shell scripts
142+
run_pipeline*.sh
143+
144+
# Runners Directory Containing slurm output
145+
runners/
146+
147+
#vim files
148+
*.swp

0 commit comments

Comments
 (0)