ControlSystem 0.1__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.
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: ControlSystem
3
+ Version: 0.1
4
+ Summary: Moja biblioteka z autorskim alfabetem i komendami
5
+ Author-email: Alexander <wszystko5@yahoo.com>
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.11
10
+ Description-Content-Type: text/markdown
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ ControlSystem.egg-info/PKG-INFO
4
+ ControlSystem.egg-info/SOURCES.txt
5
+ ControlSystem.egg-info/dependency_links.txt
6
+ ControlSystem.egg-info/top_level.txt
7
+ ppp/__init__.py
8
+ ppp/game.py
@@ -0,0 +1,2 @@
1
+ dist
2
+ ppp
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: ControlSystem
3
+ Version: 0.1
4
+ Summary: Moja biblioteka z autorskim alfabetem i komendami
5
+ Author-email: Alexander <wszystko5@yahoo.com>
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.11
10
+ Description-Content-Type: text/markdown
File without changes
@@ -0,0 +1,2 @@
1
+ from .game import command, process, clear_func
2
+ from . import game
@@ -0,0 +1,22 @@
1
+ import os, time, sys, platform
2
+
3
+ def process(co):
4
+ co = co
5
+ print(co)
6
+
7
+ def command(jakie="echo ."):
8
+ """Główna funkcja wywoływana jako command()"""
9
+ os.system(jakie)
10
+
11
+ def clear_func():
12
+ """To jest nasza funkcja wewnątrz, która będzie dostępna jako .clear()"""
13
+ if platform.system() == "Windows":
14
+ os.system("cls")
15
+ else:
16
+ os.system("clear")
17
+
18
+ # Przypisujemy wewnętrzną funkcję do atrybutu głównej funkcji
19
+ command.clear = clear_func
20
+
21
+ # Uruchamiamy konfigurację
22
+ clear_func()
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "ControlSystem" # Nazwa musi być UNIKALNA na PyPI
7
+ version = "0.1"
8
+ authors = [
9
+ { name="Alexander", email="wszystko5@yahoo.com" },
10
+ ]
11
+ description = "Moja biblioteka z autorskim alfabetem i komendami"
12
+ readme = "README.md"
13
+ requires-python = ">=3.11"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+
20
+ [tool.setuptools.packages.find]
21
+ where = ["."]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+