my-rand 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.
my_rand-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: my_rand
3
+ Version: 0.0.1
4
+ Summary: A custom random number generator built from scratch.
5
+ Author-email: Your Name <your_email@example.com>
6
+ Requires-Python: >=3.7
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: sympy
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: my_rand
3
+ Version: 0.0.1
4
+ Summary: A custom random number generator built from scratch.
5
+ Author-email: Your Name <your_email@example.com>
6
+ Requires-Python: >=3.7
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: sympy
@@ -0,0 +1,6 @@
1
+ pyproject.toml
2
+ my_rand.egg-info/PKG-INFO
3
+ my_rand.egg-info/SOURCES.txt
4
+ my_rand.egg-info/dependency_links.txt
5
+ my_rand.egg-info/requires.txt
6
+ my_rand.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ sympy
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "my_rand"
7
+ version = "0.0.1"
8
+ authors = [
9
+ { name="Your Name", email="your_email@example.com" },
10
+ ]
11
+ description = "A custom random number generator built from scratch."
12
+ readme = "README.md"
13
+ requires-python = ">=3.7"
14
+ dependencies = [
15
+ "sympy",
16
+ ]
17
+
18
+ [tool.setuptools.packages.find]
19
+ include = ["Game code*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+