cetak 1.0.0__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.
cetak-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.1
2
+ Name: cetak
3
+ Version: 1.0.0
4
+ Author: Ahmad Daniar
5
+ Author-email: foltyzxzhen@gmail.com
6
+ License: MIT
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: rich>=1.0
9
+ Requires-Dist: cowsay>=1.0
10
+ Requires-Dist: pyfiglet>=1.0
11
+
12
+ ### Cetak v1.0.0
13
+ *** Copyright © 2026 - FoltyzTheDev, All Rights Reserved.
14
+
15
+ Ini adalah sebuah library python sederhana.
16
+ Yang digunakan untuk logging dan testing.
17
+ Contoh penggunaan:
18
+ `
19
+ from cetak import Pencetak
20
+
21
+ pesan = "Halo Dunia!"
22
+ nama = "John Doe"
23
+ pencetak = Pencetak(pesan=pesan)
24
+ pencetak.cetak() # untuk mencetak pesan
25
+ pencetak.halo() # untuk halo
26
+ pencetak.sapa(nama) # untuk menyapa
27
+ `
28
+ Untuk detail, kunjungi:
29
+ https://terraria-flow.vercel.app
30
+
31
+ Terimakasih :)
cetak-1.0.0/README.md ADDED
@@ -0,0 +1,20 @@
1
+ ### Cetak v1.0.0
2
+ *** Copyright © 2026 - FoltyzTheDev, All Rights Reserved.
3
+
4
+ Ini adalah sebuah library python sederhana.
5
+ Yang digunakan untuk logging dan testing.
6
+ Contoh penggunaan:
7
+ `
8
+ from cetak import Pencetak
9
+
10
+ pesan = "Halo Dunia!"
11
+ nama = "John Doe"
12
+ pencetak = Pencetak(pesan=pesan)
13
+ pencetak.cetak() # untuk mencetak pesan
14
+ pencetak.halo() # untuk halo
15
+ pencetak.sapa(nama) # untuk menyapa
16
+ `
17
+ Untuk detail, kunjungi:
18
+ https://terraria-flow.vercel.app
19
+
20
+ Terimakasih :)
@@ -0,0 +1,8 @@
1
+ __name__ = "contoh"
2
+ __version__ = "1.0.0"
3
+ __author__ = "Ahmad Daniar <foltyzxzhen@gmail.com>"
4
+ __license__ = "MIT"
5
+
6
+ from .main import Pencetak
7
+ from .main import halo
8
+ from .main import sapa
@@ -0,0 +1,16 @@
1
+ from rich import print
2
+ from pyfiglet import figlet_format
3
+ import cowsay
4
+
5
+ class Pencetak:
6
+ def __init__(self, pesan):
7
+ self.pesan = pesan
8
+
9
+ def cetak():
10
+ print(f"[bold]{self.pesan}[/bold]")
11
+
12
+ def halo():
13
+ print("[bold][yellow]Halo Dunia![/yellow][/bold]")
14
+
15
+ def sapa(nama):
16
+ print(f"Halo, {nama} :D!")
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.1
2
+ Name: cetak
3
+ Version: 1.0.0
4
+ Author: Ahmad Daniar
5
+ Author-email: foltyzxzhen@gmail.com
6
+ License: MIT
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: rich>=1.0
9
+ Requires-Dist: cowsay>=1.0
10
+ Requires-Dist: pyfiglet>=1.0
11
+
12
+ ### Cetak v1.0.0
13
+ *** Copyright © 2026 - FoltyzTheDev, All Rights Reserved.
14
+
15
+ Ini adalah sebuah library python sederhana.
16
+ Yang digunakan untuk logging dan testing.
17
+ Contoh penggunaan:
18
+ `
19
+ from cetak import Pencetak
20
+
21
+ pesan = "Halo Dunia!"
22
+ nama = "John Doe"
23
+ pencetak = Pencetak(pesan=pesan)
24
+ pencetak.cetak() # untuk mencetak pesan
25
+ pencetak.halo() # untuk halo
26
+ pencetak.sapa(nama) # untuk menyapa
27
+ `
28
+ Untuk detail, kunjungi:
29
+ https://terraria-flow.vercel.app
30
+
31
+ Terimakasih :)
@@ -0,0 +1,10 @@
1
+ README.md
2
+ setup.py
3
+ cetak/__init__.py
4
+ cetak/main.py
5
+ cetak.egg-info/PKG-INFO
6
+ cetak.egg-info/SOURCES.txt
7
+ cetak.egg-info/dependency_links.txt
8
+ cetak.egg-info/entry_points.txt
9
+ cetak.egg-info/requires.txt
10
+ cetak.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ halodu = cetak:halo
@@ -0,0 +1,3 @@
1
+ rich>=1.0
2
+ cowsay>=1.0
3
+ pyfiglet>=1.0
@@ -0,0 +1 @@
1
+ cetak
cetak-1.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
cetak-1.0.0/setup.py ADDED
@@ -0,0 +1,25 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r") as f:
4
+ description = f.read()
5
+
6
+ setup(
7
+ name = "cetak",
8
+ version = "1.0.0",
9
+ author = "Ahmad Daniar",
10
+ author_email = "foltyzxzhen@gmail.com",
11
+ license = "MIT",
12
+ packages = find_packages(),
13
+ install_requires = [
14
+ "rich >= 1.0",
15
+ "cowsay >= 1.0",
16
+ "pyfiglet >= 1.0"
17
+ ],
18
+ entry_points = {
19
+ "console_scripts" : [
20
+ "halodu = cetak:halo"
21
+ ]
22
+ },
23
+ long_description = description,
24
+ long_description_content_type = "text/markdown",
25
+ )