execdiff 0.0.4__tar.gz → 0.0.5__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.
- {execdiff-0.0.4 → execdiff-0.0.5}/PKG-INFO +9 -2
- {execdiff-0.0.4 → execdiff-0.0.5}/execdiff.egg-info/PKG-INFO +9 -2
- execdiff-0.0.5/pyproject.toml +28 -0
- execdiff-0.0.4/pyproject.toml +0 -18
- {execdiff-0.0.4 → execdiff-0.0.5}/LICENSE +0 -0
- {execdiff-0.0.4 → execdiff-0.0.5}/README.md +0 -0
- {execdiff-0.0.4 → execdiff-0.0.5}/execdiff/__init__.py +0 -0
- {execdiff-0.0.4 → execdiff-0.0.5}/execdiff.egg-info/SOURCES.txt +0 -0
- {execdiff-0.0.4 → execdiff-0.0.5}/execdiff.egg-info/dependency_links.txt +0 -0
- {execdiff-0.0.4 → execdiff-0.0.5}/execdiff.egg-info/top_level.txt +0 -0
- {execdiff-0.0.4 → execdiff-0.0.5}/setup.cfg +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: execdiff
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: Passive execution tracing for file and package changes.
|
|
5
|
-
Author-email:
|
|
5
|
+
Author-email: Anup Moncy <n93181165@gmail.com>
|
|
6
6
|
License: Apache License
|
|
7
7
|
Version 2.0, January 2004
|
|
8
8
|
http://www.apache.org/licenses/
|
|
@@ -205,6 +205,13 @@ License: Apache License
|
|
|
205
205
|
See the License for the specific language governing permissions and
|
|
206
206
|
limitations under the License.
|
|
207
207
|
|
|
208
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
209
|
+
Classifier: Programming Language :: Python :: 3
|
|
210
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
211
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
212
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
213
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
214
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
208
215
|
Requires-Python: >=3.8
|
|
209
216
|
Description-Content-Type: text/markdown
|
|
210
217
|
License-File: LICENSE
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: execdiff
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: Passive execution tracing for file and package changes.
|
|
5
|
-
Author-email:
|
|
5
|
+
Author-email: Anup Moncy <n93181165@gmail.com>
|
|
6
6
|
License: Apache License
|
|
7
7
|
Version 2.0, January 2004
|
|
8
8
|
http://www.apache.org/licenses/
|
|
@@ -205,6 +205,13 @@ License: Apache License
|
|
|
205
205
|
See the License for the specific language governing permissions and
|
|
206
206
|
limitations under the License.
|
|
207
207
|
|
|
208
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
209
|
+
Classifier: Programming Language :: Python :: 3
|
|
210
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
211
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
212
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
213
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
214
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
208
215
|
Requires-Python: >=3.8
|
|
209
216
|
Description-Content-Type: text/markdown
|
|
210
217
|
License-File: LICENSE
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "execdiff"
|
|
7
|
+
version = "0.0.5"
|
|
8
|
+
description = "Passive execution tracing for file and package changes."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { file = "LICENSE" }
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Anup Moncy", email = "n93181165@gmail.com" }
|
|
13
|
+
]
|
|
14
|
+
requires-python = ">=3.8"
|
|
15
|
+
|
|
16
|
+
classifiers = [
|
|
17
|
+
"License :: OSI Approved :: Apache Software License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.8",
|
|
20
|
+
"Programming Language :: Python :: 3.9",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Programming Language :: Python :: 3.12"
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[tool.setuptools.packages.find]
|
|
27
|
+
where = ["."]
|
|
28
|
+
include = ["execdiff*"]
|
execdiff-0.0.4/pyproject.toml
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["setuptools>=61.0"]
|
|
3
|
-
build-backend = "setuptools.build_meta"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "execdiff"
|
|
7
|
-
version = "0.0.4"
|
|
8
|
-
description = "Passive execution tracing for file and package changes."
|
|
9
|
-
readme = "README.md"
|
|
10
|
-
license = { file = "LICENSE" }
|
|
11
|
-
authors = [
|
|
12
|
-
{ name = "Your Name", email = "your@email.com" }
|
|
13
|
-
]
|
|
14
|
-
requires-python = ">=3.8"
|
|
15
|
-
|
|
16
|
-
[tool.setuptools.packages.find]
|
|
17
|
-
where = ["."]
|
|
18
|
-
include = ["execdiff*"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|