bedger 0.0.1__tar.gz → 0.0.3__tar.gz

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 bedger might be problematic. Click here for more details.

@@ -1,8 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bedger
3
- Version: 0.0.1
4
- Summary:
3
+ Version: 0.0.3
4
+ Summary: Edge monitoring software for secure and efficient device management.
5
5
  Author: Henk van den Brink
6
+ Author-email: henk.vandenbrink@bedger.io
6
7
  Requires-Python: >=3.8.1,<4.0.0
7
8
  Classifier: Programming Language :: Python :: 3
8
9
  Classifier: Programming Language :: Python :: 3.9
@@ -12,6 +13,8 @@ Classifier: Programming Language :: Python :: 3.12
12
13
  Classifier: Programming Language :: Python :: 3.13
13
14
  Requires-Dist: pydantic (>=2.9.2,<3.0.0)
14
15
  Requires-Dist: typing-extensions (>=4.12.2,<5.0.0)
16
+ Project-URL: homepage, https://github.com/bedger-io/BEDGER-edgeservices-securitymonitoring-sdk
17
+ Project-URL: issues, https://github.com/bedger-io/BEDGER-edgeservices-securitymonitoring-sdk/issues
15
18
  Description-Content-Type: text/markdown
16
19
 
17
20
 
@@ -0,0 +1,51 @@
1
+ [tool.poetry]
2
+ name = "bedger"
3
+ version = "0.0.3"
4
+ description = "Edge monitoring software for secure and efficient device management."
5
+ authors = ["Henk van den Brink <henk.vandenbrink@bedger.io>"]
6
+ readme = "README.md"
7
+ packages = [{include = "bedger", from = "src"}]
8
+
9
+ [tool.poetry.urls]
10
+ homepage = "https://github.com/bedger-io/BEDGER-edgeservices-securitymonitoring-sdk"
11
+ issues = "https://github.com/bedger-io/BEDGER-edgeservices-securitymonitoring-sdk/issues"
12
+
13
+ [tool.poetry.dependencies]
14
+ python = "^3.8.1,<=4.0.0"
15
+ typing-extensions = "^4.12.2"
16
+ pydantic = "^2.9.2"
17
+
18
+ [tool.poetry.group.dev.dependencies]
19
+ black = "^24.4.0"
20
+ isort = "^5.13.2"
21
+ flake8-pyproject = "^1.2.3"
22
+
23
+ [build-system]
24
+ requires = ["poetry>=1.6"]
25
+ build-backend = "poetry.core.masonry.api"
26
+
27
+ [tool.isort]
28
+ profile = "black"
29
+ line_length = 130
30
+
31
+ [tool.flake8]
32
+ max-line-length = 130
33
+ exclude = [".git", "__pycache__", ".venv"]
34
+
35
+ [tool.black]
36
+ line-length = 130
37
+ target-version = ["py310", "py311"]
38
+ exclude = '''
39
+ /(
40
+ \.git
41
+ | \.venv
42
+ | \.hg
43
+ | \.mypy_cache
44
+ | \.tox
45
+ | _build
46
+ | buck-out
47
+ | build
48
+ | dist
49
+ | node_modules
50
+ )/
51
+ '''
@@ -1,67 +0,0 @@
1
- [project]
2
- name = "Bedger"
3
- version = "0.0.1"
4
- authors = [
5
- { name="Henk van den Brink", email="henk.vandenbrink@joe.nl" },
6
- ]
7
- description = "A small example package"
8
- readme = "README.md"
9
- requires-python = ">=3.8"
10
- classifiers = [
11
- "Programming Language :: Python :: 3",
12
- "License :: OSI Approved :: MIT License",
13
- "Operating System :: OS Independent",
14
- ]
15
-
16
- [project.urls]
17
- Homepage = "https://github.com/bedger-io/BEDGER-edgeservices-securitymonitoring-sdk"
18
- Issues = "https://github.com/bedger-io/BEDGER-edgeservices-securitymonitoring-sdk/issues"
19
-
20
- [tool.poetry]
21
- name = "bedger"
22
- version = "0.0.1"
23
- description = ""
24
- authors = ["Henk van den Brink"]
25
- readme = "README.md"
26
- packages = [{include = "bedger", from = "src"}]
27
-
28
- [tool.poetry.dependencies]
29
- python = "^3.8.1,<=4.0.0"
30
- typing-extensions = "^4.12.2"
31
- pydantic = "^2.9.2"
32
-
33
- [tool.poetry.group.dev.dependencies]
34
- black = "^24.4.0"
35
- isort = "^5.13.2"
36
- flake8-pyproject = "^1.2.3"
37
-
38
- [tool.isort]
39
- profile = "black"
40
- line_length = 130
41
-
42
- [tool.flake8]
43
- max-line-length = 130
44
- exclude = [
45
- ".git",
46
- "__pycache__",
47
- ".venv"
48
- ]
49
-
50
- [tool.black]
51
- line-length = 130
52
- target-version = ['py310', 'py311']
53
- exclude = '''
54
- /(
55
- \.git
56
- | \.venv
57
- | \.hg
58
- | \.mypy_cache
59
- | \.tox
60
- | \.venv
61
- | _build
62
- | buck-out
63
- | build
64
- | dist
65
- | node_modules
66
- )/
67
- '''
File without changes
File without changes
File without changes
File without changes
File without changes