vit-hk 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.
vit_hk-0.1.0/LICENSE ADDED
File without changes
vit_hk-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: vit-hk
3
+ Version: 0.1.0
4
+ Summary: Implementation of Vision Transformer (ViT) in PyTorch.
5
+ Author-email: Hamza Khan <hamxa678@gmail.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/hamxa678/ViT
8
+ Requires-Python: >=3.8
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Dynamic: license-file
12
+
13
+ # ViT
vit_hk-0.1.0/README.md ADDED
@@ -0,0 +1 @@
1
+ # ViT
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "vit-hk"
7
+ version = "0.1.0"
8
+ description = "Implementation of Vision Transformer (ViT) in PyTorch."
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ {name = "Hamza Khan", email = "hamxa678@gmail.com"}
14
+ ]
15
+
16
+ dependencies = [
17
+ # "requests>=2.0"
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://github.com/hamxa678/ViT"
vit_hk-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ from .core import hello
@@ -0,0 +1,2 @@
1
+ def hello():
2
+ return "Hello from my library!"
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: vit-hk
3
+ Version: 0.1.0
4
+ Summary: Implementation of Vision Transformer (ViT) in PyTorch.
5
+ Author-email: Hamza Khan <hamxa678@gmail.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/hamxa678/ViT
8
+ Requires-Python: >=3.8
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Dynamic: license-file
12
+
13
+ # ViT
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/ViT/__init__.py
5
+ src/ViT/core.py
6
+ src/vit_hk.egg-info/PKG-INFO
7
+ src/vit_hk.egg-info/SOURCES.txt
8
+ src/vit_hk.egg-info/dependency_links.txt
9
+ src/vit_hk.egg-info/top_level.txt
10
+ tests/test_core.py
@@ -0,0 +1 @@
1
+ ViT
File without changes