liko-fun-pack 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.
- liko_fun_pack-0.1.0/LICENSE +0 -0
- liko_fun_pack-0.1.0/PKG-INFO +10 -0
- liko_fun_pack-0.1.0/README.md +0 -0
- liko_fun_pack-0.1.0/pyproject.toml +19 -0
- liko_fun_pack-0.1.0/setup.cfg +4 -0
- liko_fun_pack-0.1.0/src/liko-fun-pack/__init__.py +1 -0
- liko_fun_pack-0.1.0/src/liko-fun-pack/core.py +2 -0
- liko_fun_pack-0.1.0/src/liko_fun_pack.egg-info/PKG-INFO +10 -0
- liko_fun_pack-0.1.0/src/liko_fun_pack.egg-info/SOURCES.txt +9 -0
- liko_fun_pack-0.1.0/src/liko_fun_pack.egg-info/dependency_links.txt +1 -0
- liko_fun_pack-0.1.0/src/liko_fun_pack.egg-info/top_level.txt +1 -0
|
File without changes
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: liko-fun-pack
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Garbage Liko does
|
|
5
|
+
Author-email: Liko Roza <you@example.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Dynamic: license-file
|
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "liko-fun-pack"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Garbage Liko does"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = [
|
|
11
|
+
{ name="Liko Roza", email="you@example.com" }
|
|
12
|
+
]
|
|
13
|
+
license = { text = "MIT" }
|
|
14
|
+
requires-python = ">=3.9"
|
|
15
|
+
|
|
16
|
+
dependencies = []
|
|
17
|
+
|
|
18
|
+
[tool.setuptools.packages.find]
|
|
19
|
+
where = ["src"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .core import liko_say_hi
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: liko-fun-pack
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Garbage Liko does
|
|
5
|
+
Author-email: Liko Roza <you@example.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Dynamic: license-file
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/liko-fun-pack/__init__.py
|
|
5
|
+
src/liko-fun-pack/core.py
|
|
6
|
+
src/liko_fun_pack.egg-info/PKG-INFO
|
|
7
|
+
src/liko_fun_pack.egg-info/SOURCES.txt
|
|
8
|
+
src/liko_fun_pack.egg-info/dependency_links.txt
|
|
9
|
+
src/liko_fun_pack.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
liko-fun-pack
|