doliyev 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.
- doliyev-0.1.0/PKG-INFO +7 -0
- doliyev-0.1.0/README.md +0 -0
- doliyev-0.1.0/doliyev/__init__.py +1 -0
- doliyev-0.1.0/doliyev/main.py +2 -0
- doliyev-0.1.0/doliyev.egg-info/PKG-INFO +7 -0
- doliyev-0.1.0/doliyev.egg-info/SOURCES.txt +8 -0
- doliyev-0.1.0/doliyev.egg-info/dependency_links.txt +1 -0
- doliyev-0.1.0/doliyev.egg-info/top_level.txt +1 -0
- doliyev-0.1.0/pyproject.toml +11 -0
- doliyev-0.1.0/setup.cfg +4 -0
doliyev-0.1.0/PKG-INFO
ADDED
doliyev-0.1.0/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .main import salom
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
doliyev
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "doliyev"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Shahriyor Doliyevning Python kutubxonasi"
|
|
5
|
+
authors = [{name = "Shahriyor Doliyev"}]
|
|
6
|
+
readme = "README.md"
|
|
7
|
+
requires-python = ">=3.7"
|
|
8
|
+
|
|
9
|
+
[build-system]
|
|
10
|
+
requires = ["setuptools", "wheel"]
|
|
11
|
+
build-backend = "setuptools.build_meta"
|
doliyev-0.1.0/setup.cfg
ADDED