machine-thinking 0.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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Alexander Fedotov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: machine-thinking
3
+ Version: 0.0.1
4
+ Summary: Package description
5
+ Author-email: Machina Ratiocinatrix <machina.ratio@gmail.com>, Alexander Fedotov <alex.fedotov@aol.com>
6
+ Project-URL: Homepage, https://github.com/machina-ratiocinatrix/machine-thinking
7
+ Project-URL: Bug Tracker, https://github.com/machina-ratiocinatrix/machine-thinking/issues
8
+ Keywords: machine-thinking
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.10
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: pyyaml==6.0.3
16
+ Dynamic: license-file
17
+
18
+ # Machine thinking
19
+ <pre>
20
+ pip install machine-thinking
21
+ </pre>
22
+ Then:
23
+ ```Python
24
+ # Python
25
+ import machine_thinking
26
+ ```
@@ -0,0 +1,9 @@
1
+ # Machine thinking
2
+ <pre>
3
+ pip install machine-thinking
4
+ </pre>
5
+ Then:
6
+ ```Python
7
+ # Python
8
+ import machine_thinking
9
+ ```
@@ -0,0 +1,31 @@
1
+ [build-system]
2
+ requires = ["setuptools>=67.0"]
3
+ build-backend = "setuptools.build_meta"
4
+ [project]
5
+ name = "machine-thinking"
6
+ version = "0.0.1"
7
+ authors = [
8
+ {name="Machina Ratiocinatrix", email="machina.ratio@gmail.com"},
9
+ {name="Alexander Fedotov", email="alex.fedotov@aol.com"}
10
+ ]
11
+ description = "Package description"
12
+ readme = "README.md"
13
+ requires-python = ">=3.10"
14
+ classifiers=[
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+
20
+ keywords = ["machine-thinking"]
21
+
22
+ dependencies = [
23
+ "pyyaml == 6.0.3"
24
+ ]
25
+
26
+ [project.scripts]
27
+ machine-thinking = "machine_thinking.cli:run"
28
+
29
+ [project.urls]
30
+ "Homepage" = "https://github.com/machina-ratiocinatrix/machine-thinking"
31
+ "Bug Tracker" = "https://github.com/machina-ratiocinatrix/machine-thinking/issues"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,7 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Python
3
+
4
+ """Copyright (c) Alexander Fedotov.
5
+ This source code is licensed under the license found in the
6
+ LICENSE file in the root directory of this source tree.
7
+ """
@@ -0,0 +1,12 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Python
3
+
4
+ """Copyright (c) Alexander Fedotov.
5
+ This source code is licensed under the license found in the
6
+ LICENSE file in the root directory of this source tree.
7
+ """
8
+ from .main import main
9
+
10
+
11
+ def run(): #arg): # (count, arg): if with option.
12
+ main() #arg)
@@ -0,0 +1,15 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Python
3
+
4
+ """Copyright (c) Alexander Fedotov.
5
+ This source code is licensed under the license found in the
6
+ LICENSE file in the root directory of this source tree.
7
+ """
8
+
9
+
10
+ def main(): # arg=None):
11
+ print(' main.')
12
+
13
+
14
+ if __name__ == '__main__':
15
+ main()
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: machine-thinking
3
+ Version: 0.0.1
4
+ Summary: Package description
5
+ Author-email: Machina Ratiocinatrix <machina.ratio@gmail.com>, Alexander Fedotov <alex.fedotov@aol.com>
6
+ Project-URL: Homepage, https://github.com/machina-ratiocinatrix/machine-thinking
7
+ Project-URL: Bug Tracker, https://github.com/machina-ratiocinatrix/machine-thinking/issues
8
+ Keywords: machine-thinking
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.10
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: pyyaml==6.0.3
16
+ Dynamic: license-file
17
+
18
+ # Machine thinking
19
+ <pre>
20
+ pip install machine-thinking
21
+ </pre>
22
+ Then:
23
+ ```Python
24
+ # Python
25
+ import machine_thinking
26
+ ```
@@ -0,0 +1,12 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/machine_thinking/__init__.py
5
+ src/machine_thinking/cli.py
6
+ src/machine_thinking/main.py
7
+ src/machine_thinking.egg-info/PKG-INFO
8
+ src/machine_thinking.egg-info/SOURCES.txt
9
+ src/machine_thinking.egg-info/dependency_links.txt
10
+ src/machine_thinking.egg-info/entry_points.txt
11
+ src/machine_thinking.egg-info/requires.txt
12
+ src/machine_thinking.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ machine-thinking = machine_thinking.cli:run
@@ -0,0 +1 @@
1
+ machine_thinking