devbrixtools 0.0.1__py3-none-any.whl

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,3 @@
1
+ from .processor import process_file
2
+
3
+ __all__ = ["process_file"]
@@ -0,0 +1,2 @@
1
+ def process_file(path: str) -> str:
2
+ return f"Processing file: {path}"
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: devbrixtools
3
+ Version: 0.0.1
4
+ Summary: A simple processing tool
5
+ Author-email: Giang Vu <gavin.vu@devbrix.com>
6
+ Project-URL: Homepage, https://github.com/yourusername/devbrixtools
7
+ Requires-Python: >=3.8
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Dynamic: license-file
@@ -0,0 +1,7 @@
1
+ devbrixtools/__init__.py,sha256=7BCWVWandQu0BZ_pH4brzai6bot3rvxb0tSDEPUdG9Y,65
2
+ devbrixtools/processor.py,sha256=CZbwMMdgOgNp01OJqH7Jpcf6KYYY1Fn7Nbq02gPosko,74
3
+ devbrixtools-0.0.1.dist-info/licenses/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ devbrixtools-0.0.1.dist-info/METADATA,sha256=8-OpJ074KQiJbDBwiDgMzfSVjZUX2tchoMeg58m5ysg,321
5
+ devbrixtools-0.0.1.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
6
+ devbrixtools-0.0.1.dist-info/top_level.txt,sha256=gwsQNTVsPFuyJC9L2-Zp_ScJ8DqX6XMuyfz_vE9uB_I,13
7
+ devbrixtools-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
File without changes
@@ -0,0 +1 @@
1
+ devbrixtools