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.
- controlsystem-0.1/ControlSystem.egg-info/PKG-INFO +10 -0
- controlsystem-0.1/ControlSystem.egg-info/SOURCES.txt +8 -0
- controlsystem-0.1/ControlSystem.egg-info/dependency_links.txt +1 -0
- controlsystem-0.1/ControlSystem.egg-info/top_level.txt +2 -0
- controlsystem-0.1/PKG-INFO +10 -0
- controlsystem-0.1/README.md +0 -0
- controlsystem-0.1/ppp/__init__.py +2 -0
- controlsystem-0.1/ppp/game.py +22 -0
- controlsystem-0.1/pyproject.toml +21 -0
- controlsystem-0.1/setup.cfg +4 -0
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -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,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 = ["."]
|