pitono 0.1.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.
pitono-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: pitono
3
+ Version: 0.1.0
4
+ Summary: Python implementation of Testeranto
5
+ Author: ADam Wong
6
+ Author-email:
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.7
12
+ Classifier: Programming Language :: Python :: 3.8
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Requires-Python: >=3.7
16
+ Description-Content-Type: text/markdown
17
+ Requires-Dist: websockets>=12.0
18
+ Dynamic: requires-python
19
+
20
+ # Pitono
21
+
22
+ The python implementation of testeranto.
23
+
24
+ ## Setup
25
+
26
+ 1. Create a virtual environment:
27
+ ```bash
28
+ python3 -m venv venv
29
+ ```
30
+
31
+ 2. Activate the virtual environment:
32
+ ```bash
33
+ source venv/bin/activate
34
+ ```
35
+
36
+ 3. Install the package in development mode:
37
+ ```bash
38
+ pip install -e .
39
+ ```
40
+
41
+ ## Running Tests
42
+
43
+ Make sure the virtual environment is activated, then run your Python tests normally.
pitono-0.1.0/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # Pitono
2
+
3
+ The python implementation of testeranto.
4
+
5
+ ## Setup
6
+
7
+ 1. Create a virtual environment:
8
+ ```bash
9
+ python3 -m venv venv
10
+ ```
11
+
12
+ 2. Activate the virtual environment:
13
+ ```bash
14
+ source venv/bin/activate
15
+ ```
16
+
17
+ 3. Install the package in development mode:
18
+ ```bash
19
+ pip install -e .
20
+ ```
21
+
22
+ ## Running Tests
23
+
24
+ Make sure the virtual environment is activated, then run your Python tests normally.
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: pitono
3
+ Version: 0.1.0
4
+ Summary: Python implementation of Testeranto
5
+ Author: ADam Wong
6
+ Author-email:
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.7
12
+ Classifier: Programming Language :: Python :: 3.8
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Requires-Python: >=3.7
16
+ Description-Content-Type: text/markdown
17
+ Requires-Dist: websockets>=12.0
18
+ Dynamic: requires-python
19
+
20
+ # Pitono
21
+
22
+ The python implementation of testeranto.
23
+
24
+ ## Setup
25
+
26
+ 1. Create a virtual environment:
27
+ ```bash
28
+ python3 -m venv venv
29
+ ```
30
+
31
+ 2. Activate the virtual environment:
32
+ ```bash
33
+ source venv/bin/activate
34
+ ```
35
+
36
+ 3. Install the package in development mode:
37
+ ```bash
38
+ pip install -e .
39
+ ```
40
+
41
+ ## Running Tests
42
+
43
+ Make sure the virtual environment is activated, then run your Python tests normally.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ pitono.egg-info/PKG-INFO
5
+ pitono.egg-info/SOURCES.txt
6
+ pitono.egg-info/dependency_links.txt
7
+ pitono.egg-info/entry_points.txt
8
+ pitono.egg-info/requires.txt
9
+ pitono.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pitono-core-generator = core_generator:main
@@ -0,0 +1 @@
1
+ websockets>=12.0
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,29 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "pitono"
7
+ version = "0.1.0"
8
+ description = "Python implementation of Testeranto"
9
+ readme = "README.md"
10
+ requires-python = ">=3.7"
11
+ dependencies = [
12
+ "websockets>=12.0",
13
+ ]
14
+ authors = [
15
+ { name = "ADam Wong" }
16
+ ]
17
+ classifiers = [
18
+ "Development Status :: 3 - Alpha",
19
+ "Intended Audience :: Developers",
20
+ "License :: OSI Approved :: MIT License",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.7",
23
+ "Programming Language :: Python :: 3.8",
24
+ "Programming Language :: Python :: 3.9",
25
+ "Programming Language :: Python :: 3.10",
26
+ ]
27
+
28
+ [project.scripts]
29
+ pitono-core-generator = "core_generator:main"
pitono-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
pitono-0.1.0/setup.py ADDED
@@ -0,0 +1,40 @@
1
+ from setuptools import setup, find_packages
2
+ import os
3
+
4
+ # Get the long description from the README file
5
+ readme_path = os.path.join(os.path.dirname(__file__), 'README.md')
6
+ long_description = ''
7
+ if os.path.exists(readme_path):
8
+ with open(readme_path, 'r', encoding='utf-8') as f:
9
+ long_description = f.read()
10
+
11
+ setup(
12
+ name="pitono",
13
+ version="0.1.0",
14
+ packages=find_packages(where='.'),
15
+ package_dir={'': '.'},
16
+ entry_points={
17
+ 'console_scripts': [
18
+ 'pitono-core-generator=core_generator:main',
19
+ ],
20
+ },
21
+ python_requires='>=3.7',
22
+ install_requires=[
23
+ "websockets>=12.0",
24
+ ],
25
+ author="Testeranto Team",
26
+ author_email="",
27
+ description="Python implementation of Testeranto",
28
+ long_description=long_description,
29
+ long_description_content_type="text/markdown",
30
+ classifiers=[
31
+ "Development Status :: 3 - Alpha",
32
+ "Intended Audience :: Developers",
33
+ "License :: OSI Approved :: MIT License",
34
+ "Programming Language :: Python :: 3",
35
+ "Programming Language :: Python :: 3.7",
36
+ "Programming Language :: Python :: 3.8",
37
+ "Programming Language :: Python :: 3.9",
38
+ "Programming Language :: Python :: 3.10",
39
+ ],
40
+ )