yuclid 0.1.0__tar.gz → 0.1.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.
@@ -1,11 +1,16 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: yuclid
3
- Version: 0.1.0
4
- Summary: A Python project.
5
- Author-email: Your Name <your.email@example.com>
3
+ Version: 0.1.1
4
+ Summary: Run experiments and interactively plot results across combinations of user-specified dimensions
5
+ Author-email: Federico Sossai <federico.sossai@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/fsossai/yuclid
7
7
  Requires-Python: >=3.8
8
8
  Description-Content-Type: text/markdown
9
+ Requires-Dist: pandas
10
+ Requires-Dist: numpy
11
+ Requires-Dist: matplotlib
12
+ Requires-Dist: seaborn
13
+ Requires-Dist: scipy
9
14
 
10
15
  # Yuclid
11
16
 
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "yuclid"
7
+ version = "0.1.1"
8
+ description = "Run experiments and interactively plot results across combinations of user-specified dimensions"
9
+ authors = [{ name = "Federico Sossai", email = "federico.sossai@gmail.com" }]
10
+ readme = "README.md"
11
+ requires-python = ">=3.8"
12
+ dependencies = ["pandas", "numpy", "matplotlib", "seaborn", "scipy"]
13
+
14
+
15
+ [project.scripts]
16
+ yuclid = "yuclid.cli:main"
17
+
18
+ [project.urls]
19
+ Homepage = "https://github.com/fsossai/yuclid"
@@ -1,11 +1,16 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: yuclid
3
- Version: 0.1.0
4
- Summary: A Python project.
5
- Author-email: Your Name <your.email@example.com>
3
+ Version: 0.1.1
4
+ Summary: Run experiments and interactively plot results across combinations of user-specified dimensions
5
+ Author-email: Federico Sossai <federico.sossai@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/fsossai/yuclid
7
7
  Requires-Python: >=3.8
8
8
  Description-Content-Type: text/markdown
9
+ Requires-Dist: pandas
10
+ Requires-Dist: numpy
11
+ Requires-Dist: matplotlib
12
+ Requires-Dist: seaborn
13
+ Requires-Dist: scipy
9
14
 
10
15
  # Yuclid
11
16
 
@@ -10,4 +10,5 @@ yuclid.egg-info/PKG-INFO
10
10
  yuclid.egg-info/SOURCES.txt
11
11
  yuclid.egg-info/dependency_links.txt
12
12
  yuclid.egg-info/entry_points.txt
13
+ yuclid.egg-info/requires.txt
13
14
  yuclid.egg-info/top_level.txt
@@ -0,0 +1,5 @@
1
+ pandas
2
+ numpy
3
+ matplotlib
4
+ seaborn
5
+ scipy
@@ -1,17 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools>=61.0"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "yuclid"
7
- version = "0.1.0"
8
- description = "A Python project."
9
- authors = [{ name = "Your Name", email = "your.email@example.com" }]
10
- readme = "README.md"
11
- requires-python = ">=3.8"
12
-
13
- [project.scripts]
14
- yuclid = "yuclid.cli:main"
15
-
16
- [project.urls]
17
- Homepage = "https://github.com/fsossai/yuclid"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes