execdiff 0.0.6__tar.gz → 0.0.7__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: execdiff
3
- Version: 0.0.6
3
+ Version: 0.0.7
4
4
  Summary: Passive execution tracing for file and package changes.
5
5
  Author-email: Anup Moncy <n93181165@gmail.com>
6
6
  License: Apache License
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: execdiff
3
- Version: 0.0.6
3
+ Version: 0.0.7
4
4
  Summary: Passive execution tracing for file and package changes.
5
5
  Author-email: Anup Moncy <n93181165@gmail.com>
6
6
  License: Apache License
@@ -5,4 +5,5 @@ execdiff/__init__.py
5
5
  execdiff.egg-info/PKG-INFO
6
6
  execdiff.egg-info/SOURCES.txt
7
7
  execdiff.egg-info/dependency_links.txt
8
+ execdiff.egg-info/entry_points.txt
8
9
  execdiff.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ execdiff = execdiff.cli:main
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "execdiff"
7
- version = "0.0.6"
7
+ version = "0.0.7"
8
8
  description = "Passive execution tracing for file and package changes."
9
9
  readme = "README.md"
10
10
  license = { file = "LICENSE" }
@@ -23,6 +23,9 @@ classifiers = [
23
23
  "Programming Language :: Python :: 3.12"
24
24
  ]
25
25
 
26
+ [project.scripts]
27
+ execdiff = "execdiff.cli:main"
28
+
26
29
  [tool.setuptools.packages.find]
27
30
  where = ["."]
28
31
  include = ["execdiff*"]
File without changes
File without changes
File without changes
File without changes