codeflash 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,12 @@
1
+ Metadata-Version: 2.1
2
+ Name: codeflash
3
+ Version: 0.0.1
4
+ Summary:
5
+ Author: Saurabh Misra
6
+ Requires-Python: >=3.10,<4.0
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Programming Language :: Python :: 3.10
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Description-Content-Type: text/markdown
11
+
12
+
File without changes
File without changes
@@ -0,0 +1,7 @@
1
+
2
+ def hi_world(content):
3
+ print(f"Hi, {content}!")
4
+
5
+
6
+ if __name__ == "__main__":
7
+ hi_world("world, welcome to codeflash")
@@ -0,0 +1,14 @@
1
+ [tool.poetry]
2
+ name = "codeflash"
3
+ version = "0.0.1"
4
+ description = ""
5
+ authors = ["Saurabh Misra"]
6
+ readme = "README.md"
7
+
8
+ [tool.poetry.dependencies]
9
+ python = "^3.10"
10
+
11
+
12
+ [build-system]
13
+ requires = ["poetry-core"]
14
+ build-backend = "poetry.core.masonry.api"