Skip to content

Commit

Permalink
project init
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanprytula committed Dec 12, 2024
0 parents commit af9a1ef
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info

# Virtual environments
.venv

.env
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.13
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# PyMicroMax

Project about the journey of learning, experimenting, and mastering tech stacks for cloud-native microservices.
6 changes: 6 additions & 0 deletions hello.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
def main():
print("Hello from pymicromax!")


if __name__ == "__main__":
main()
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[project]
name = "pymicromax"
authors = [{ name = "Ivan Prytula", email = "[email protected]" }]
version = "0.1.0"
description = "Project focused on mastering microservices with maximum potential for deployment and scalability."
readme = "README.md"
requires-python = ">=3.13"
dependencies = []

0 comments on commit af9a1ef

Please sign in to comment.