Skip to content

Commit 4d6b3da

Browse files
initial commit
1 parent d516ca3 commit 4d6b3da

File tree

12 files changed

+397
-1
lines changed

12 files changed

+397
-1
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ __pycache__/
66
# C extensions
77
*.so
88

9+
10+
# macos
11+
.DS_Store
12+
13+
# JetBrains
14+
.idea
15+
916
# Distribution / packaging
1017
.Python
1118
build/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Frederik Peter Høngaard
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Pipfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = true
5+
6+
[packages]
7+
loguru = "==0.6.*"
8+
pandas = "==1.5.*"
9+
10+
[dev-packages]
11+
black = "==23.*"
12+
flake8 = "*"
13+
isort = "*"
14+
pytest = "*"
15+
16+
[requires]
17+
python_version = "3.10"

Pipfile.lock

Lines changed: 271 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
# easy-model
1+
# easy-model
2+
3+
---
4+

pyproject.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "easy_learn_" "example_package_YOUR_USERNAME_HERE"
7+
version = "0.0.1"
8+
authors = [
9+
{ name="Frederik P. Høngaard", email="mail@frederikhoengaard.com" },
10+
]
11+
description = "A small example package"
12+
readme = "README.md"
13+
requires-python = ">=3.7"
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/pypa/sampleproject"

python/src/main/ingestion/__init__.py

Whitespace-only changes.

python/src/main/models/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from models.models import Model, Dataset

python/src/main/models/models.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
class Dataset:
2+
def __init__(self):
3+
self.name = None
4+
self.description = None
5+
6+
7+
class Model:
8+
def __init__(self):
9+
self.name = None
10+
11+
def save(self, path: str):
12+
raise NotImplementedError
13+
14+
15+
class Project:
16+
def __init__(self):
17+
self.name = None
18+
self.description = None
19+
20+
def save(self, path: str):
21+
raise NotImplementedError

python/src/main/pipeline/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)