bedger 0.0.1__tar.gz → 0.0.2__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.2
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
@@ -0,0 +1,47 @@
1
+ [tool.poetry]
2
+ name = "bedger"
3
+ version = "0.0.2"
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.dependencies]
10
+ python = "^3.8.1,<=4.0.0"
11
+ typing-extensions = "^4.12.2"
12
+ pydantic = "^2.9.2"
13
+
14
+ [tool.poetry.group.dev.dependencies]
15
+ black = "^24.4.0"
16
+ isort = "^5.13.2"
17
+ flake8-pyproject = "^1.2.3"
18
+
19
+ [build-system]
20
+ requires = ["poetry>=1.6"]
21
+ build-backend = "poetry.core.masonry.api"
22
+
23
+ [tool.isort]
24
+ profile = "black"
25
+ line_length = 130
26
+
27
+ [tool.flake8]
28
+ max-line-length = 130
29
+ exclude = [".git", "__pycache__", ".venv"]
30
+
31
+ [tool.black]
32
+ line-length = 130
33
+ target-version = ["py310", "py311"]
34
+ exclude = '''
35
+ /(
36
+ \.git
37
+ | \.venv
38
+ | \.hg
39
+ | \.mypy_cache
40
+ | \.tox
41
+ | _build
42
+ | buck-out
43
+ | build
44
+ | dist
45
+ | node_modules
46
+ )/
47
+ '''
@@ -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