gpunative 0.0.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.
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.4
2
+ Name: gpunative
3
+ Version: 0.0.0
@@ -0,0 +1,10 @@
1
+ ### Making into a Package
2
+
3
+ ```bash
4
+ python setup.py sdist bdist_wheel
5
+ ```
6
+
7
+ ### Reference
8
+ - https://packaging.python.org/en/latest/tutorials/packaging-projects
9
+ - https://packaging.python.org/en/latest/guides
10
+ - https://packaging.python.org/en/latest/flow
@@ -0,0 +1,3 @@
1
+ from .main import gpu_native
2
+
3
+
@@ -0,0 +1,3 @@
1
+ def gpu_native():
2
+ print("GPU Native")
3
+
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.4
2
+ Name: gpunative
3
+ Version: 0.0.0
@@ -0,0 +1,9 @@
1
+ README.md
2
+ setup.py
3
+ gpunative/__init__.py
4
+ gpunative/main.py
5
+ gpunative.egg-info/PKG-INFO
6
+ gpunative.egg-info/SOURCES.txt
7
+ gpunative.egg-info/dependency_links.txt
8
+ gpunative.egg-info/entry_points.txt
9
+ gpunative.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ gpunative = gpunative:gpu_native
@@ -0,0 +1 @@
1
+ gpunative
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,13 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="gpunative",
5
+ version="0.0.0",
6
+ packages=find_packages(),
7
+ install_requires=[],
8
+ entry_points={
9
+ "console_scripts": [
10
+ "gpunative=gpunative:gpu_native",
11
+ ]
12
+ },
13
+ )