yta-programming-env 0.0.1__tar.gz → 0.2.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.
- {yta_programming_env-0.0.1 → yta_programming_env-0.2.0}/PKG-INFO +6 -2
- {yta_programming_env-0.0.1 → yta_programming_env-0.2.0}/pyproject.toml +8 -2
- {yta_programming_env-0.0.1 → yta_programming_env-0.2.0}/LICENSE +0 -0
- {yta_programming_env-0.0.1 → yta_programming_env-0.2.0}/README.md +0 -0
- {yta_programming_env-0.0.1 → yta_programming_env-0.2.0}/src/yta_programming_env/__init__.py +0 -0
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: yta-programming-env
|
|
3
|
-
Version: 0.0
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Youtube Autonomous Programming Dependencies Module
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Author: danialcala94
|
|
7
7
|
Author-email: danielalcalavalera@gmail.com
|
|
8
|
-
Requires-Python:
|
|
8
|
+
Requires-Python: >=3.9,<=3.13
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.9
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
11
15
|
Requires-Dist: python-dotenv (>=1.0.0,<9.0.0)
|
|
12
16
|
Requires-Dist: yta_programming_path (>=0.0.1,<1.0.0)
|
|
13
17
|
Requires-Dist: yta_validation (>=0.0.1,<1.0.0)
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "yta-programming-env"
|
|
3
|
-
version = "0.0
|
|
3
|
+
version = "0.2.0"
|
|
4
4
|
description = "Youtube Autonomous Programming Dependencies Module"
|
|
5
5
|
authors = [
|
|
6
6
|
{name = "danialcala94",email = "danielalcalavalera@gmail.com"}
|
|
7
7
|
]
|
|
8
8
|
readme = "README.md"
|
|
9
|
-
requires-python = "
|
|
9
|
+
requires-python = ">=3.9,<=3.13"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"yta_validation (>=0.0.1,<1.0.0)",
|
|
12
12
|
"yta_programming_path (>=0.0.1,<1.0.0)",
|
|
@@ -19,6 +19,12 @@ packages = [{include = "yta_programming_env", from = "src"}]
|
|
|
19
19
|
[tool.poetry.group.dev.dependencies]
|
|
20
20
|
pytest = "^8.3.5"
|
|
21
21
|
|
|
22
|
+
[tool.pytest.ini_options]
|
|
23
|
+
markers = [
|
|
24
|
+
"mandatory: mandatory tests for release",
|
|
25
|
+
"additional: exhaustive and demanding tests"
|
|
26
|
+
]
|
|
27
|
+
|
|
22
28
|
[build-system]
|
|
23
29
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
24
30
|
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|