port-ocean 0.13.1.dev1__py3-none-any.whl → 0.14.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of port-ocean might be problematic. Click here for more details.

@@ -1,94 +0,0 @@
1
- # Git
2
- .git
3
- .gitignore
4
- .gitattributes
5
-
6
-
7
- # CI
8
- .codeclimate.yml
9
- .travis.yml
10
- .taskcluster.yml
11
-
12
- # Docker
13
- docker-compose.yml
14
- Dockerfile
15
- .docker
16
- .dockerignore
17
-
18
- # Byte-compiled / optimized / DLL files
19
- **/__pycache__/
20
- **/*.py[cod]
21
-
22
- # C extensions
23
- *.so
24
-
25
- # Distribution / packaging
26
- .Python
27
- env/
28
- build/
29
- develop-eggs/
30
- dist/
31
- downloads/
32
- eggs/
33
- lib/
34
- lib64/
35
- parts/
36
- sdist/
37
- var/
38
- *.egg-info/
39
- .installed.cfg
40
- *.egg
41
-
42
- # PyInstaller
43
- # Usually these files are written by a python script from a template
44
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
45
- *.manifest
46
- *.spec
47
-
48
- # Installer logs
49
- pip-log.txt
50
- pip-delete-this-directory.txt
51
-
52
- # Unit test / coverage reports
53
- htmlcov/
54
- .tox/
55
- .coverage
56
- .cache
57
- nosetests.xml
58
- coverage.xml
59
-
60
- # Translations
61
- *.mo
62
- *.pot
63
-
64
- # Django stuff:
65
- *.log
66
-
67
- # Sphinx documentation
68
- docs/_build/
69
-
70
- # PyBuilder
71
- target/
72
-
73
- # Virtual environment
74
- .env
75
- .venv/
76
- venv/
77
-
78
- # PyCharm
79
- .idea
80
-
81
- # Python mode for VIM
82
- .ropeproject
83
- **/.ropeproject
84
-
85
- # Vim swap files
86
- **/*.swp
87
-
88
- # VS Code
89
- .vscode/
90
-
91
- *.md
92
- **/.ruff_cache
93
- **/cahangelog
94
- **/tests
@@ -1,15 +0,0 @@
1
- FROM python:3.11-slim-bookworm
2
-
3
- ENV LIBRDKAFKA_VERSION 1.9.2
4
-
5
- WORKDIR /app
6
-
7
- RUN apt update && \
8
- apt install -y wget make g++ libssl-dev autoconf automake libtool curl librdkafka-dev && \
9
- apt-get clean
10
-
11
- COPY . /app
12
-
13
- RUN export POETRY_VIRTUALENVS_CREATE=false && make install/prod && pip cache purge
14
-
15
- ENTRYPOINT ocean sail