Metadata-Version: 2.1
Name: HW3PBO
Version: 0.0.1
Summary: Kumpulan algoritma pengurutan.
Home-page: https://github.com/willyrusli/HW-3_PBO_WillyRusli_422023024
Author: devopsjourney-willy
Author-email: willy.422023024@civitas.ukrida.ac.id
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

New-Item -ItemType File -Name LICENSE
New-Item -ItemType File -Name pyproject.toml
New-Item -ItemType File -Name README.md
New-Item -ItemType File -Name setup.cfg


New-Item -ItemType Directory -Path src/sortingalgorithms
New-Item -ItemType File -Path src/sortingalgorithms/_init_.py
New-Item -ItemType File -Path src/sortingalgorithms/bubble_sort.py
New-Item -ItemType File -Path src/sortingalgorithms/insertion_sort.py
New-Item -ItemType File -Path src/sortingalgorithms/quick_sort.py


New-Item -ItemType Directory -Path tests/sortingalgorithms
New-Item -ItemType File -Path tests/sortingalgorithms/test_bubble_sort.py
New-Item -ItemType File -Path tests/sortingalgorithms/test_insertion_sort.py
New-Item -ItemType File -Path tests/sortingalgorithms/test_quick_sort.py
