pyfastfile 0.1.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.
- pyfastfile-0.1.0/PKG-INFO +19 -0
- pyfastfile-0.1.0/README.md +3 -0
- pyfastfile-0.1.0/pyfastfile/__init__.py +22 -0
- pyfastfile-0.1.0/pyfastfile.egg-info/PKG-INFO +19 -0
- pyfastfile-0.1.0/pyfastfile.egg-info/SOURCES.txt +7 -0
- pyfastfile-0.1.0/pyfastfile.egg-info/dependency_links.txt +1 -0
- pyfastfile-0.1.0/pyfastfile.egg-info/top_level.txt +2 -0
- pyfastfile-0.1.0/pyproject.toml +30 -0
- pyfastfile-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyfastfile
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Dosya yazma işlemlerini kolaylaştıran hızlı ve basit bir Python API kütüphanesi
|
|
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,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.1.0
|
|
4
|
+
Summary: Dosya yazma işlemlerini kolaylaştıran hızlı ve basit bir Python API kütüphanesi
|
|
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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pyfastfile"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Dosya yazma işlemlerini kolaylaştıran hızlı ve basit bir Python API kütüphanesi"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = {text = "Apache-2.0"}
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Batuhan Senol"}
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
keywords = ["file", "io", "filesystem", "utility", "fastfile"]
|
|
17
|
+
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"License :: OSI Approved :: Apache Software License",
|
|
21
|
+
"Operating System :: OS Independent",
|
|
22
|
+
"Development Status :: 3 - Alpha",
|
|
23
|
+
"Intended Audience :: Developers",
|
|
24
|
+
"Topic :: System :: Filesystems"
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
dependencies = []
|
|
28
|
+
|
|
29
|
+
[tool.setuptools.packages.find]
|
|
30
|
+
where = ["."]
|