dk-sample 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.
- dk_sample-0.0.1/PKG-INFO +12 -0
- dk_sample-0.0.1/README.md +3 -0
- dk_sample-0.0.1/pyproject.toml +16 -0
- dk_sample-0.0.1/setup.cfg +4 -0
- dk_sample-0.0.1/src/dk_sample/__init__.py +0 -0
- dk_sample-0.0.1/src/dk_sample/main.py +8 -0
- dk_sample-0.0.1/src/dk_sample.egg-info/PKG-INFO +12 -0
- dk_sample-0.0.1/src/dk_sample.egg-info/SOURCES.txt +9 -0
- dk_sample-0.0.1/src/dk_sample.egg-info/dependency_links.txt +1 -0
- dk_sample-0.0.1/src/dk_sample.egg-info/requires.txt +1 -0
- dk_sample-0.0.1/src/dk_sample.egg-info/top_level.txt +1 -0
dk_sample-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dk_sample
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: My first package
|
|
5
|
+
Author: Dhruvin Kadivar
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: requests
|
|
9
|
+
|
|
10
|
+
# Sample Project
|
|
11
|
+
|
|
12
|
+
This is my first python package.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "dk_sample"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "My first package"
|
|
9
|
+
authors = [
|
|
10
|
+
{name = "Dhruvin Kadivar"}
|
|
11
|
+
]
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
|
+
dependencies = [
|
|
15
|
+
"requests",
|
|
16
|
+
]
|
|
File without changes
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import requests
|
|
2
|
+
def hello():
|
|
3
|
+
print("Hello from dk_sample package")
|
|
4
|
+
print("Package from Dhruvin Kadivar")
|
|
5
|
+
|
|
6
|
+
r = requests.get('https://www.reddit.com/r/Jokes/comments/1rs62xf/a_stoned_hippie_tourist_flies_in_to_australia_for/')
|
|
7
|
+
print(r.status_code)
|
|
8
|
+
print(r.text)
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dk_sample
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: My first package
|
|
5
|
+
Author: Dhruvin Kadivar
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: requests
|
|
9
|
+
|
|
10
|
+
# Sample Project
|
|
11
|
+
|
|
12
|
+
This is my first python package.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/dk_sample/__init__.py
|
|
4
|
+
src/dk_sample/main.py
|
|
5
|
+
src/dk_sample.egg-info/PKG-INFO
|
|
6
|
+
src/dk_sample.egg-info/SOURCES.txt
|
|
7
|
+
src/dk_sample.egg-info/dependency_links.txt
|
|
8
|
+
src/dk_sample.egg-info/requires.txt
|
|
9
|
+
src/dk_sample.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
requests
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dk_sample
|