GPUniq 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.
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: GPUniq
3
+ Version: 0.1.0
4
+ Summary: A Python library
5
+ Author-email: Egor Kalinin <kalinin-egor@users.noreply.github.com>
6
+ Project-URL: Homepage, https://github.com/GPUniq/GPUniq
7
+ Project-URL: Repository, https://github.com/GPUniq/GPUniq
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.7
12
+ Description-Content-Type: text/markdown
13
+
14
+ # GPUniq
15
+
16
+ A Python library.
17
+
18
+ ## Installation
19
+
20
+ ```bash
21
+ pip install GPUniq
22
+ ```
23
+
24
+ ## Usage
25
+
26
+ ```python
27
+ from gpuniq import hello
28
+
29
+ print(hello())
30
+ ```
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ GPUniq.egg-info/PKG-INFO
4
+ GPUniq.egg-info/SOURCES.txt
5
+ GPUniq.egg-info/dependency_links.txt
6
+ GPUniq.egg-info/top_level.txt
7
+ gpuniq/__init__.py
@@ -0,0 +1 @@
1
+ gpuniq
gpuniq-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: GPUniq
3
+ Version: 0.1.0
4
+ Summary: A Python library
5
+ Author-email: Egor Kalinin <kalinin-egor@users.noreply.github.com>
6
+ Project-URL: Homepage, https://github.com/GPUniq/GPUniq
7
+ Project-URL: Repository, https://github.com/GPUniq/GPUniq
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.7
12
+ Description-Content-Type: text/markdown
13
+
14
+ # GPUniq
15
+
16
+ A Python library.
17
+
18
+ ## Installation
19
+
20
+ ```bash
21
+ pip install GPUniq
22
+ ```
23
+
24
+ ## Usage
25
+
26
+ ```python
27
+ from gpuniq import hello
28
+
29
+ print(hello())
30
+ ```
gpuniq-0.1.0/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # GPUniq
2
+
3
+ A Python library.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install GPUniq
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ from gpuniq import hello
15
+
16
+ print(hello())
17
+ ```
@@ -0,0 +1,7 @@
1
+ """GPUniq - A Python library."""
2
+
3
+ __version__ = "0.1.0"
4
+
5
+ def hello():
6
+ """Simple hello function."""
7
+ return "Hello from GPUniq!"
@@ -0,0 +1,22 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "GPUniq"
7
+ version = "0.1.0"
8
+ description = "A Python library"
9
+ readme = "README.md"
10
+ requires-python = ">=3.7"
11
+ authors = [
12
+ {name = "Egor Kalinin", email = "kalinin-egor@users.noreply.github.com"}
13
+ ]
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://github.com/GPUniq/GPUniq"
22
+ Repository = "https://github.com/GPUniq/GPUniq"
gpuniq-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+