fibcrypt 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.
- fibcrypt-0.1.0/PKG-INFO +18 -0
- fibcrypt-0.1.0/fibcrypt.egg-info/PKG-INFO +18 -0
- fibcrypt-0.1.0/fibcrypt.egg-info/SOURCES.txt +6 -0
- fibcrypt-0.1.0/fibcrypt.egg-info/dependency_links.txt +1 -0
- fibcrypt-0.1.0/fibcrypt.egg-info/requires.txt +1 -0
- fibcrypt-0.1.0/fibcrypt.egg-info/top_level.txt +1 -0
- fibcrypt-0.1.0/setup.cfg +4 -0
- fibcrypt-0.1.0/setup.py +20 -0
fibcrypt-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fibcrypt
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A fast Fibonacci-based cryptographic toolkit
|
|
5
|
+
Author: Hakan Damar
|
|
6
|
+
Author-email: hakan.damar@linux.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Topic :: Security :: Cryptography
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Requires-Dist: pycryptodome>=3.19.0
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: author-email
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: requires-dist
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fibcrypt
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A fast Fibonacci-based cryptographic toolkit
|
|
5
|
+
Author: Hakan Damar
|
|
6
|
+
Author-email: hakan.damar@linux.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Topic :: Security :: Cryptography
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Requires-Dist: pycryptodome>=3.19.0
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: author-email
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: requires-dist
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pycryptodome>=3.19.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
fibcrypt-0.1.0/setup.cfg
ADDED
fibcrypt-0.1.0/setup.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="fibcrypt",
|
|
5
|
+
version="0.1.0",
|
|
6
|
+
description="A fast Fibonacci-based cryptographic toolkit",
|
|
7
|
+
author="Hakan Damar",
|
|
8
|
+
author_email="hakan.damar@linux.com",
|
|
9
|
+
packages=find_packages(),
|
|
10
|
+
install_requires=[
|
|
11
|
+
"pycryptodome>=3.19.0"
|
|
12
|
+
],
|
|
13
|
+
python_requires=">=3.8",
|
|
14
|
+
classifiers=[
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Topic :: Security :: Cryptography"
|
|
19
|
+
],
|
|
20
|
+
)
|