ModenFirstModules 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.
File without changes
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: ModenFirstModules
3
+ Version: 1.0.0
4
+ Summary: A very small modules
5
+ Author-email: program416 <leogifted@naver.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/pypa/sampleproject
8
+ Project-URL: Issues, https://github.com/pypa/sampleproject/issues
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Dynamic: license-file
File without changes
@@ -0,0 +1,19 @@
1
+ [project]
2
+ name = "ModenFirstModules"
3
+ version = "1.0.0"
4
+ authors = [
5
+ { name="program416", email="leogifted@naver.com" },
6
+ ]
7
+ description = "A very small modules"
8
+ readme = "README.md"
9
+ requires-python = ">=3.9"
10
+ classifiers = [
11
+ "Programming Language :: Python :: 3",
12
+ "Operating System :: OS Independent",
13
+ ]
14
+ license = "MIT"
15
+ license-files = ["LICEN[CS]E*"]
16
+
17
+ [project.urls]
18
+ Homepage = "https://github.com/pypa/sampleproject"
19
+ Issues = "https://github.com/pypa/sampleproject/issues"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,11 @@
1
+ import sys
2
+ import time
3
+
4
+ def slow_print(text, delay=0.03, enddelay=0.3):
5
+ """문자를 하나씩 천천히 출력합니다."""
6
+ for char in text:
7
+ sys.stdout.write(char)
8
+ sys.stdout.flush()
9
+ time.sleep(delay)
10
+ print()
11
+ time.sleep(enddelay)
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["hatchling >= 1.26"]
3
+ build-backend = "hatchling.build"
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: ModenFirstModules
3
+ Version: 1.0.0
4
+ Summary: A very small modules
5
+ Author-email: program416 <leogifted@naver.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/pypa/sampleproject
8
+ Project-URL: Issues, https://github.com/pypa/sampleproject/issues
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Dynamic: license-file
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/ModenFirstModules/PrintConfig.py
5
+ src/ModenFirstModules/__init__.py
6
+ src/ModenFirstModules.egg-info/PKG-INFO
7
+ src/ModenFirstModules.egg-info/SOURCES.txt
8
+ src/ModenFirstModules.egg-info/dependency_links.txt
9
+ src/ModenFirstModules.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ ModenFirstModules