Puthon 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.
puthon-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: Puthon
3
+ Version: 1.0.0
4
+ Summary: Python Plus Version - More powerful instructions!
5
+ Author: CYAN-08
6
+ Requires-Python: >=3.6
7
+ Dynamic: author
8
+ Dynamic: requires-python
9
+ Dynamic: summary
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: Puthon
3
+ Version: 1.0.0
4
+ Summary: Python Plus Version - More powerful instructions!
5
+ Author: CYAN-08
6
+ Requires-Python: >=3.6
7
+ Dynamic: author
8
+ Dynamic: requires-python
9
+ Dynamic: summary
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ Puthon.egg-info/PKG-INFO
4
+ Puthon.egg-info/SOURCES.txt
5
+ Puthon.egg-info/dependency_links.txt
6
+ Puthon.egg-info/top_level.txt
7
+ puthon/__init__.py
8
+ puthon/plus.py
@@ -0,0 +1 @@
1
+ puthon
puthon-1.0.0/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Puthon - The Plus Version of Python
2
+ **Author: CYAN-08**
3
+
4
+ Puthon is the Plus version of Python, created by CYAN-08.
5
+
@@ -0,0 +1,4 @@
1
+ from .plus import say, cool_print
2
+
3
+ __version__ = "1.0.0"
4
+ __author__ = "CYAN-08"
@@ -0,0 +1,14 @@
1
+ import os
2
+ import sys
3
+ import time
4
+
5
+ def say(text):
6
+ os.system(f'powershell -Command "Add-Type -AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak(\'{text}\')"')
7
+ print(f"[Puthon-Say]: {text}")
8
+
9
+ def cool_print(text, delay=0.05):
10
+ for char in text:
11
+ sys.stdout.write(char)
12
+ sys.stdout.flush%
13
+ time.sleep(delay)
14
+ print()
puthon-1.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
puthon-1.0.0/setup.py ADDED
@@ -0,0 +1,10 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='Puthon',
5
+ version='1.0.0',
6
+ packages=find_packages(),
7
+ author='CYAN-08',
8
+ description='Python Plus Version - More powerful instructions!',
9
+ python_requires='>=3.6'
10
+ )