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 +0 -0
- campusil-0.1.2/PKG-INFO +14 -0
- campusil-0.1.2/README.md +0 -0
- campusil-0.1.2/pyproject.toml +27 -0
- campusil-0.1.2/setup.cfg +4 -0
- campusil-0.1.2/src/CampusIL/CampusIL.py +1 -0
- campusil-0.1.2/src/CampusIL/__init__.py +5 -0
- campusil-0.1.2/src/CampusIL.egg-info/PKG-INFO +14 -0
- campusil-0.1.2/src/CampusIL.egg-info/SOURCES.txt +10 -0
- campusil-0.1.2/src/CampusIL.egg-info/dependency_links.txt +1 -0
- campusil-0.1.2/src/CampusIL.egg-info/requires.txt +4 -0
- campusil-0.1.2/src/CampusIL.egg-info/top_level.txt +1 -0
campusil-0.1.2/LICENSE
ADDED
|
File without changes
|
campusil-0.1.2/PKG-INFO
ADDED
|
@@ -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
|
campusil-0.1.2/README.md
ADDED
|
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"
|
campusil-0.1.2/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
CampusIL
|