pashalko 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.
- pashalko-0.1.0/PKG-INFO +8 -0
- pashalko-0.1.0/README.md +0 -0
- pashalko-0.1.0/pyproject.toml +14 -0
- pashalko-0.1.0/setup.cfg +4 -0
- pashalko-0.1.0/src/my_bible_pas/__init__.py +0 -0
- pashalko-0.1.0/src/my_bible_pas/core.py +3009 -0
- pashalko-0.1.0/src/pashalko.egg-info/PKG-INFO +8 -0
- pashalko-0.1.0/src/pashalko.egg-info/SOURCES.txt +8 -0
- pashalko-0.1.0/src/pashalko.egg-info/dependency_links.txt +1 -0
- pashalko-0.1.0/src/pashalko.egg-info/top_level.txt +1 -0
pashalko-0.1.0/PKG-INFO
ADDED
pashalko-0.1.0/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pashalko" # Обязательно уникальное имя!
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="GGGh_0506", email="glebusik@gmail.com" },
|
|
10
|
+
]
|
|
11
|
+
description = "PASHALOCHKO"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
|
+
license = {text = "MIT"} # Или другой, если есть файл LICENSE
|
pashalko-0.1.0/setup.cfg
ADDED
|
File without changes
|