sophist 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.
sophist-0.0.1/LICENSE ADDED
@@ -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.
sophist-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: sophist
3
+ Version: 0.0.1
4
+ Summary: σοφιστής
5
+ Author-email: Alexander Fedotov <alex.fedotov@aol.com>
6
+ Project-URL: Homepage, https://github.com/alxfed/sophist
7
+ Keywords: sophist
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: PyGithub>=2.6.0
15
+ Requires-Dist: requests>=2.32.3
16
+ Requires-Dist: click>=8.3.0
17
+ Dynamic: license-file
18
+
19
+ # Sophist
20
+ σοφιστής
21
+ <pre>
22
+ pip install sophist
23
+ </pre>
24
+ Then:
25
+ ```Python
26
+ # Python
27
+ import sophist
28
+ ```
@@ -0,0 +1,10 @@
1
+ # Sophist
2
+ σοφιστής
3
+ <pre>
4
+ pip install sophist
5
+ </pre>
6
+ Then:
7
+ ```Python
8
+ # Python
9
+ import sophist
10
+ ```
@@ -0,0 +1,31 @@
1
+ [build-system]
2
+ requires = ["setuptools>=67.0"]
3
+ build-backend = "setuptools.build_meta"
4
+ [project]
5
+ name = "sophist"
6
+ version = "0.0.1"
7
+ authors = [
8
+ {name="Alexander Fedotov", email="alex.fedotov@aol.com"},
9
+ ]
10
+ description = "σοφιστής"
11
+ readme = "README.md"
12
+ requires-python = ">=3.10"
13
+ classifiers=[
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ ]
18
+
19
+ keywords = ["sophist"]
20
+
21
+ dependencies = [
22
+ "PyGithub >= 2.6.0",
23
+ "requests >= 2.32.3",
24
+ "click >= 8.3.0"
25
+ ]
26
+
27
+ [project.scripts]
28
+ sophist = "sophist.cli:run"
29
+
30
+ [project.urls]
31
+ "Homepage" = "https://github.com/alxfed/sophist"
@@ -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,18 @@
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
+ import click
10
+
11
+
12
+ @click.command()
13
+ # @click.option('--count', default=1, help='number of attempts')
14
+ # and use it in the commend as --count=1
15
+ # @click.argument('arg')
16
+ def run(): #arg): # (count, arg): if with option.
17
+ click.echo('Running sophist') # with') + arg)
18
+ main() #arg)
@@ -0,0 +1,16 @@
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()
16
+ ...
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: sophist
3
+ Version: 0.0.1
4
+ Summary: σοφιστής
5
+ Author-email: Alexander Fedotov <alex.fedotov@aol.com>
6
+ Project-URL: Homepage, https://github.com/alxfed/sophist
7
+ Keywords: sophist
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: PyGithub>=2.6.0
15
+ Requires-Dist: requests>=2.32.3
16
+ Requires-Dist: click>=8.3.0
17
+ Dynamic: license-file
18
+
19
+ # Sophist
20
+ σοφιστής
21
+ <pre>
22
+ pip install sophist
23
+ </pre>
24
+ Then:
25
+ ```Python
26
+ # Python
27
+ import sophist
28
+ ```
@@ -0,0 +1,12 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/sophist/__init__.py
5
+ src/sophist/cli.py
6
+ src/sophist/main.py
7
+ src/sophist.egg-info/PKG-INFO
8
+ src/sophist.egg-info/SOURCES.txt
9
+ src/sophist.egg-info/dependency_links.txt
10
+ src/sophist.egg-info/entry_points.txt
11
+ src/sophist.egg-info/requires.txt
12
+ src/sophist.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ sophist = sophist.cli:run
@@ -0,0 +1,3 @@
1
+ PyGithub>=2.6.0
2
+ requests>=2.32.3
3
+ click>=8.3.0
@@ -0,0 +1 @@
1
+ sophist