Skip to content

Commit 063c851

Browse files
committed
Add code developed in ADO
1 parent a7a2eef commit 063c851

27 files changed

Lines changed: 7590 additions & 2 deletions

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
share/python-wheels/
20+
*.egg-info/
21+
.installed.cfg
22+
*.egg
23+
MANIFEST
24+
25+
# Virtual environments
26+
.venv/
27+
venv/
28+
ENV/
29+
env/
30+
31+
# IDEs
32+
.vscode/
33+
.idea/
34+
*.swp
35+
*.swo
36+
*~
37+
.DS_Store
38+
39+
# Testing
40+
.pytest_cache/
41+
.coverage
42+
htmlcov/
43+
.tox/
44+
.hypothesis/
45+
46+
# Type checking
47+
.mypy_cache/
48+
.dmypy.json
49+
dmypy.json
50+
.pytype/
51+
52+
# Distribution
53+
*.whl
54+
*.tar.gz
55+
56+
# Exclud any file starting with 't_' then a number, and ending with '.py'
57+
t_*.py
58+
59+
# Exclude linting and formatting configuration files
60+
.ruff_cache/
61+
62+
# Exclude kiota log files
63+
/**/.kiota.log
64+
65+
# Exclude old/backup files
66+
*.old

.vscode/settings.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
11
{
2-
"workbench.colorTheme": "Default Dark+"
3-
}
2+
"python.terminal.activateEnvironment": true,
3+
"python.analysis.typeCheckingMode": "off",
4+
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
5+
"python.testing.pytestEnabled": true,
6+
"python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest",
7+
"python.testing.pytestArgs": ["tests"],
8+
"python.testing.unittestEnabled": false,
9+
"prettier.ignorePath": ".prettierignore",
10+
"workbench.colorTheme": "Default Dark+",
11+
"snyk.advanced.organization": "e0bae4ca-0611-4edc-8b8d-b9c977862562",
12+
"snyk.advanced.autoSelectOrganization": true
13+
}

CITATION.cff

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
cff-version: 1.2.0
2+
message: "If you use the Puzzel SMS Gateway Client, please cite it as follows:"
3+
title: "Puzzel SMS Gateway Client"
4+
abstract: "Python client for Puzzel SMS Gateway."
5+
authors:
6+
- family-names: "Lie Uberg"
7+
given-names: Lewi
8+
version: 2.0.4
9+
date-released: 2024-03-06
10+
repository-code: "https://github.com/PuzzelSolutions/smsgw-client-python"
11+
license: MIT
12+
keywords:
13+
- "puzzel"
14+
- "sms"
15+
- "smsgw"
16+
- "sms-gw"
17+
- "smsapi"
18+
- "sms-api"
19+
- "sms-gateway"
20+
- "sms-gateway-client"
21+
- "gsm"

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2024 Puzzel AS
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

0 commit comments

Comments
 (0)