inkadon 0.0.1__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.
- inkadon-0.0.1/PKG-INFO +17 -0
- inkadon-0.0.1/README.md +4 -0
- inkadon-0.0.1/pyproject.toml +21 -0
- inkadon-0.0.1/src/inkadon/__init__.py +3 -0
inkadon-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: inkadon
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Inkadon — placeholder. Name reserved; project under development.
|
|
5
|
+
Author: Inkadon
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: inkadon
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Inkadon
|
|
15
|
+
|
|
16
|
+
Name placeholder. This PyPI name is reserved for the **Inkadon** project, which is
|
|
17
|
+
under development. No functional release yet.
|
inkadon-0.0.1/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "inkadon"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Inkadon — placeholder. Name reserved; project under development."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Inkadon" }]
|
|
13
|
+
keywords = ["inkadon"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[tool.hatch.build.targets.wheel]
|
|
21
|
+
packages = ["src/inkadon"]
|