bopper 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.
- bopper-0.1.0/PKG-INFO +12 -0
- bopper-0.1.0/README.md +3 -0
- bopper-0.1.0/pyproject.toml +15 -0
- bopper-0.1.0/src/bopper/__init__.py +1 -0
bopper-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: bopper
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Placeholder release reserving the 'bopper' name for an upcoming Synnada project.
|
|
5
|
+
Author-email: samican-synnada <samican@synnada.ai>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# bopper
|
|
11
|
+
|
|
12
|
+
This name is reserved for an upcoming Synnada project. A real release will follow.
|
bopper-0.1.0/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "bopper"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Placeholder release reserving the 'bopper' name for an upcoming Synnada project."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
authors = [{ name = "samican-synnada", email = "samican@synnada.ai" }]
|
|
12
|
+
license = "MIT"
|
|
13
|
+
|
|
14
|
+
[tool.hatch.build.targets.wheel]
|
|
15
|
+
packages = ["src/bopper"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.0"
|