ciph 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.
- ciph-0.0.0/PKG-INFO +15 -0
- ciph-0.0.0/ciph/__init__.py +1 -0
- ciph-0.0.0/ciph.egg-info/PKG-INFO +15 -0
- ciph-0.0.0/ciph.egg-info/SOURCES.txt +6 -0
- ciph-0.0.0/ciph.egg-info/dependency_links.txt +1 -0
- ciph-0.0.0/ciph.egg-info/top_level.txt +1 -0
- ciph-0.0.0/pyproject.toml +27 -0
- ciph-0.0.0/setup.cfg +4 -0
ciph-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ciph
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder package reserved for future development.
|
|
5
|
+
Author-email: Ankit Chaubey <m.ankitchaubey@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ankit-chaubey/ciph
|
|
8
|
+
Project-URL: Source, https://github.com/ankit-chaubey/ciph
|
|
9
|
+
Project-URL: Issues, https://github.com/ankit-chaubey/ciph/issues
|
|
10
|
+
Keywords: encryption,security,crypto
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Requires-Python: >=3.8
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# welcome to ciph
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ciph
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder package reserved for future development.
|
|
5
|
+
Author-email: Ankit Chaubey <m.ankitchaubey@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ankit-chaubey/ciph
|
|
8
|
+
Project-URL: Source, https://github.com/ankit-chaubey/ciph
|
|
9
|
+
Project-URL: Issues, https://github.com/ankit-chaubey/ciph/issues
|
|
10
|
+
Keywords: encryption,security,crypto
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Requires-Python: >=3.8
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ciph
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ciph" # change to "vylt" if needed
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Placeholder package reserved for future development."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
|
|
13
|
+
authors = [
|
|
14
|
+
{ name = "Ankit Chaubey", email = "m.ankitchaubey@gmail.com" }
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
keywords = ["encryption", "security", "crypto"]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"License :: OSI Approved :: MIT License",
|
|
21
|
+
"Operating System :: OS Independent"
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[project.urls]
|
|
25
|
+
Homepage = "https://github.com/ankit-chaubey/ciph"
|
|
26
|
+
Source = "https://github.com/ankit-chaubey/ciph"
|
|
27
|
+
Issues = "https://github.com/ankit-chaubey/ciph/issues"
|
ciph-0.0.0/setup.cfg
ADDED