Skip to content

Commit bf6a9d7

Browse files
committed
Setup Inital Structure -> uv init, folder structure
1 parent b978e74 commit bf6a9d7

File tree

8 files changed

+14
-0
lines changed

8 files changed

+14
-0
lines changed

.github/workflows/main.yml

Whitespace-only changes.

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12

Dockerfile

Whitespace-only changes.

NetworkSecurity/__init__.py

Whitespace-only changes.

README.md

Whitespace-only changes.

main.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def main():
2+
print("Hello from mlops-project!")
3+
4+
5+
if __name__ == "__main__":
6+
main()

pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[project]
2+
name = "mlops-project"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
requires-python = ">=3.12"
7+
dependencies = []

requirements.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)