mlipaudit 0.0.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.
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: mlipaudit
3
+ Version: 0.0.1
4
+ Summary:
5
+ License: LICENSE
6
+ Author: Yessine Khanfir
7
+ Author-email: y.khanfir@instadeep.com
8
+ Classifier: License :: Other/Proprietary License
9
+ Classifier: Programming Language :: Python :: 2
10
+ Classifier: Programming Language :: Python :: 2.7
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.4
13
+ Classifier: Programming Language :: Python :: 3.5
14
+ Classifier: Programming Language :: Python :: 3.6
15
+ Classifier: Programming Language :: Python :: 3.7
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: 3.14
@@ -0,0 +1,2 @@
1
+ from .dummy_script import show_message
2
+
File without changes
@@ -0,0 +1,2 @@
1
+ def show_message():
2
+ print("This function is within the id-mlip package installed from PyPI ! version 0.7")
@@ -0,0 +1,8 @@
1
+ [tool.poetry]
2
+ name = "mlipaudit"
3
+ version = "0.0.1"
4
+ description = ""
5
+ license = "LICENSE"
6
+ authors = [
7
+ "Yessine Khanfir <y.khanfir@instadeep.com>",
8
+ ]