pyfastfile 0.0.0__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,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyfastfile
3
+ Version: 0.0.0
4
+ Summary: A lightweight and fast Python API for simplifying file operations
5
+ Author: Batuhan Senol
6
+ License: Apache-2.0
7
+ Keywords: file,io,filesystem,utility,fastfile
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: Apache Software License
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Topic :: System :: Filesystems
14
+ Requires-Python: >=3.9
15
+ Description-Content-Type: text/markdown
16
+
17
+ A small repository aimed at speeding up file operations.
18
+
19
+ Under development…
@@ -0,0 +1,3 @@
1
+ A small repository aimed at speeding up file operations.
2
+
3
+ Under development…
@@ -0,0 +1,22 @@
1
+ from importlib.metadata import version
2
+
3
+ try:
4
+ __version__ = version("pyfastfile")
5
+ except Exception:
6
+ __version__ = "0.0.0"
7
+
8
+ def signature(show=False):
9
+ data = (
10
+ f"pyfastfile v{__version__}\n"
11
+ "Experimental Toolkit\n"
12
+ "Author: Batuhan Şenol"
13
+ )
14
+
15
+ if show:
16
+ print(data)
17
+
18
+ return data
19
+
20
+ __all__ = [
21
+ "signature"
22
+ ]
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyfastfile
3
+ Version: 0.0.0
4
+ Summary: A lightweight and fast Python API for simplifying file operations
5
+ Author: Batuhan Senol
6
+ License: Apache-2.0
7
+ Keywords: file,io,filesystem,utility,fastfile
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: Apache Software License
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Topic :: System :: Filesystems
14
+ Requires-Python: >=3.9
15
+ Description-Content-Type: text/markdown
16
+
17
+ A small repository aimed at speeding up file operations.
18
+
19
+ Under development…
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ pyfastfile/__init__.py
4
+ pyfastfile.egg-info/PKG-INFO
5
+ pyfastfile.egg-info/SOURCES.txt
6
+ pyfastfile.egg-info/dependency_links.txt
7
+ pyfastfile.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ dist
2
+ pyfastfile
@@ -0,0 +1,31 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "pyfastfile"
7
+ version = "0.0.0"
8
+ description = "A lightweight and fast Python API for simplifying file operations"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = {text = "Apache-2.0"}
12
+
13
+ authors = [
14
+ {name = "Batuhan Senol"}
15
+ ]
16
+
17
+ keywords = ["file", "io", "filesystem", "utility", "fastfile"]
18
+
19
+ classifiers = [
20
+ "Programming Language :: Python :: 3",
21
+ "License :: OSI Approved :: Apache Software License",
22
+ "Operating System :: OS Independent",
23
+ "Development Status :: 3 - Alpha",
24
+ "Intended Audience :: Developers",
25
+ "Topic :: System :: Filesystems"
26
+ ]
27
+
28
+ dependencies = []
29
+
30
+ [tool.setuptools.packages.find]
31
+ where = ["."]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+