devlinker 0.2.0__tar.gz → 1.2.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devlinker
3
- Version: 0.2.0
3
+ Version: 1.2.1
4
4
  Summary: AI-powered linking and automation tool
5
5
  Author-email: Mani <mani1028@users.noreply.github.com>
6
6
  Requires-Python: >=3.7
@@ -0,0 +1,16 @@
1
+ """Dev Linker package."""
2
+
3
+ try:
4
+ from importlib.metadata import version
5
+
6
+ __version__ = version("devlinker")
7
+ except Exception:
8
+ __version__ = "0.0.0"
9
+
10
+ __all__ = [
11
+ "main",
12
+ "runner",
13
+ "detector",
14
+ "proxy",
15
+ "tunnel",
16
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devlinker
3
- Version: 0.2.0
3
+ Version: 1.2.1
4
4
  Summary: AI-powered linking and automation tool
5
5
  Author-email: Mani <mani1028@users.noreply.github.com>
6
6
  Requires-Python: >=3.7
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "devlinker"
7
- version = "0.2.0"
7
+ version = "1.2.1"
8
8
  description = "AI-powered linking and automation tool"
9
9
  authors = [
10
10
  { name = "Mani", email = "mani1028@users.noreply.github.com" }
@@ -1,11 +0,0 @@
1
- """Dev Linker package."""
2
-
3
- __version__ = "1.2.0"
4
-
5
- __all__ = [
6
- "main",
7
- "runner",
8
- "detector",
9
- "proxy",
10
- "tunnel",
11
- ]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes