disarm 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.
- disarm-0.0.0/PKG-INFO +19 -0
- disarm-0.0.0/README.md +8 -0
- disarm-0.0.0/disarm/__init__.py +8 -0
- disarm-0.0.0/disarm.egg-info/PKG-INFO +19 -0
- disarm-0.0.0/disarm.egg-info/SOURCES.txt +7 -0
- disarm-0.0.0/disarm.egg-info/dependency_links.txt +1 -0
- disarm-0.0.0/disarm.egg-info/top_level.txt +1 -0
- disarm-0.0.0/pyproject.toml +19 -0
- disarm-0.0.0/setup.cfg +4 -0
disarm-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: disarm
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder — name reserved for the forthcoming 'disarm' library (secure text transliteration, normalization, and safe key/slug generation; formerly 'translit'). Not yet functional.
|
|
5
|
+
Author: Richard Quinn
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/raeq/disarm
|
|
8
|
+
Keywords: transliteration,unicode,normalization,security,slug
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# disarm (placeholder)
|
|
13
|
+
|
|
14
|
+
Name reserved for a forthcoming library: secure text transliteration, Unicode
|
|
15
|
+
normalization, and safe key/slug generation (formerly `translit`).
|
|
16
|
+
|
|
17
|
+
This `0.0.0` release is an intentional placeholder and has no functional API.
|
|
18
|
+
|
|
19
|
+
Project: https://github.com/raeq/disarm
|
disarm-0.0.0/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# disarm (placeholder)
|
|
2
|
+
|
|
3
|
+
Name reserved for a forthcoming library: secure text transliteration, Unicode
|
|
4
|
+
normalization, and safe key/slug generation (formerly `translit`).
|
|
5
|
+
|
|
6
|
+
This `0.0.0` release is an intentional placeholder and has no functional API.
|
|
7
|
+
|
|
8
|
+
Project: https://github.com/raeq/disarm
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""Placeholder package — the name `disarm` is reserved for a forthcoming library
|
|
2
|
+
(secure text transliteration, normalization, and safe key/slug generation;
|
|
3
|
+
formerly `translit`). This 0.0.0 release intentionally has no functional API.
|
|
4
|
+
|
|
5
|
+
See https://github.com/raeq/disarm.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.0"
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: disarm
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder — name reserved for the forthcoming 'disarm' library (secure text transliteration, normalization, and safe key/slug generation; formerly 'translit'). Not yet functional.
|
|
5
|
+
Author: Richard Quinn
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/raeq/disarm
|
|
8
|
+
Keywords: transliteration,unicode,normalization,security,slug
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# disarm (placeholder)
|
|
13
|
+
|
|
14
|
+
Name reserved for a forthcoming library: secure text transliteration, Unicode
|
|
15
|
+
normalization, and safe key/slug generation (formerly `translit`).
|
|
16
|
+
|
|
17
|
+
This `0.0.0` release is an intentional placeholder and has no functional API.
|
|
18
|
+
|
|
19
|
+
Project: https://github.com/raeq/disarm
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
disarm
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "disarm"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Placeholder — name reserved for the forthcoming 'disarm' library (secure text transliteration, normalization, and safe key/slug generation; formerly 'translit'). Not yet functional."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [{ name = "Richard Quinn" }]
|
|
13
|
+
keywords = ["transliteration", "unicode", "normalization", "security", "slug"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://github.com/raeq/disarm"
|
|
17
|
+
|
|
18
|
+
[tool.setuptools]
|
|
19
|
+
packages = ["disarm"]
|
disarm-0.0.0/setup.cfg
ADDED