CampusIL 0.1.2__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.
campusil-0.1.2/LICENSE ADDED
File without changes
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: CampusIL
3
+ Version: 0.1.2
4
+ Summary: Pre-requisites code for campus.gov.il deep learning course, by the ministry of education, Israel
5
+ Author-email: Gad Lidror <gady.lidror@gmail.com>
6
+ Project-URL: Homepage, https://github.com/gadlidror/CampusIL
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: numpy
11
+ Requires-Dist: pandas
12
+ Requires-Dist: scikit-learn
13
+ Requires-Dist: matplotlib
14
+ Dynamic: license-file
File without changes
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [tool.setuptools]
6
+ package-dir = {"" = "src"}
7
+
8
+ [tool.setuptools.packages.find]
9
+ where = ["src"]
10
+
11
+ [project]
12
+ name = "CampusIL"
13
+ version = "0.1.2"
14
+ authors = [
15
+ { name="Gad Lidror", email="gady.lidror@gmail.com" }
16
+ ]
17
+ description = "Pre-requisites code for campus.gov.il deep learning course, by the ministry of education, Israel"
18
+ readme = "README.md"
19
+ requires-python = ">=3.10"
20
+ dependencies = ["numpy",
21
+ "pandas",
22
+ "scikit-learn",
23
+ "matplotlib"
24
+ ]
25
+
26
+ [project.urls]
27
+ Homepage = "https://github.com/gadlidror/CampusIL"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,5 @@
1
+ import numpy as np
2
+ import pandas as pd
3
+ import matplotlib.pyplot as plt
4
+ import random
5
+
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: CampusIL
3
+ Version: 0.1.2
4
+ Summary: Pre-requisites code for campus.gov.il deep learning course, by the ministry of education, Israel
5
+ Author-email: Gad Lidror <gady.lidror@gmail.com>
6
+ Project-URL: Homepage, https://github.com/gadlidror/CampusIL
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: numpy
11
+ Requires-Dist: pandas
12
+ Requires-Dist: scikit-learn
13
+ Requires-Dist: matplotlib
14
+ Dynamic: license-file
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/CampusIL/CampusIL.py
5
+ src/CampusIL/__init__.py
6
+ src/CampusIL.egg-info/PKG-INFO
7
+ src/CampusIL.egg-info/SOURCES.txt
8
+ src/CampusIL.egg-info/dependency_links.txt
9
+ src/CampusIL.egg-info/requires.txt
10
+ src/CampusIL.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ numpy
2
+ pandas
3
+ scikit-learn
4
+ matplotlib
@@ -0,0 +1 @@
1
+ CampusIL