core-data-structures 1.0.0__tar.gz → 1.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.
Files changed (19) hide show
  1. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/PKG-INFO +16 -6
  2. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/core_data_structures.egg-info/PKG-INFO +16 -6
  3. core_data_structures-1.1.0/core_data_structures.egg-info/requires.txt +7 -0
  4. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/graphs/vertex.py +8 -1
  5. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/pyproject.toml +20 -9
  6. core-data-structures-1.0.0/core_data_structures.egg-info/requires.txt +0 -3
  7. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/LICENSE +0 -0
  8. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/README.md +0 -0
  9. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/core_data_structures.egg-info/SOURCES.txt +0 -0
  10. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/core_data_structures.egg-info/dependency_links.txt +0 -0
  11. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/core_data_structures.egg-info/top_level.txt +0 -0
  12. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/__init__.py +0 -0
  13. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/graphs/__init__.py +0 -0
  14. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/graphs/graphs.py +0 -0
  15. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/trees/__init__.py +0 -0
  16. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/trees/binary_tree.py +0 -0
  17. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/trees/simple_tree.py +0 -0
  18. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/setup.cfg +0 -0
  19. {core-data-structures-1.0.0 → core_data_structures-1.1.0}/setup.py +0 -0
@@ -1,23 +1,33 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: core-data-structures
3
- Version: 1.0.0
3
+ Version: 1.1.0
4
4
  Summary: This project/library contains commons data structures...
5
5
  Author-email: Alejandro Cora González <alek.cora.glez@gmail.com>
6
6
  Maintainer: Alejandro Cora González
7
7
  License: MIT
8
8
  Project-URL: Homepage, https://gitlab.com/bytecode-solutions/core/core-data-structures
9
+ Project-URL: Repository, https://gitlab.com/bytecode-solutions/core/core-data-structures
10
+ Project-URL: Issues, https://gitlab.com/bytecode-solutions/core/core-data-structures/-/issues
11
+ Project-URL: Changelog, https://gitlab.com/bytecode-solutions/core/core-data-structures/-/blob/master/CHANGELOG.md
9
12
  Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Development Status :: 5 - Production/Stable
10
15
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
+ Classifier: Topic :: Utilities
11
17
  Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.7
19
+ Classifier: Programming Language :: Python :: 3.8
12
20
  Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
13
22
  Classifier: Programming Language :: Python :: 3.11
14
- Classifier: Intended Audience :: Developers
15
- Classifier: Topic :: Utilities
16
- Requires-Python: >=3.9
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Requires-Python: >=3.7
17
26
  Description-Content-Type: text/markdown
18
27
  License-File: LICENSE
19
- Requires-Dist: core-tests
20
- Provides-Extra: test
28
+ Requires-Dist: core-tests>=1.1.0
29
+ Requires-Dist: typing-extensions>=4.8.0; python_version >= "3.8" and python_version < "3.11"
30
+ Requires-Dist: typing-extensions>=4.2.0; python_version >= "3.7" and python_version < "3.8"
21
31
 
22
32
  # core-data-structures
23
33
  _______________________________________________________________________________
@@ -1,23 +1,33 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: core-data-structures
3
- Version: 1.0.0
3
+ Version: 1.1.0
4
4
  Summary: This project/library contains commons data structures...
5
5
  Author-email: Alejandro Cora González <alek.cora.glez@gmail.com>
6
6
  Maintainer: Alejandro Cora González
7
7
  License: MIT
8
8
  Project-URL: Homepage, https://gitlab.com/bytecode-solutions/core/core-data-structures
9
+ Project-URL: Repository, https://gitlab.com/bytecode-solutions/core/core-data-structures
10
+ Project-URL: Issues, https://gitlab.com/bytecode-solutions/core/core-data-structures/-/issues
11
+ Project-URL: Changelog, https://gitlab.com/bytecode-solutions/core/core-data-structures/-/blob/master/CHANGELOG.md
9
12
  Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Development Status :: 5 - Production/Stable
10
15
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
+ Classifier: Topic :: Utilities
11
17
  Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.7
19
+ Classifier: Programming Language :: Python :: 3.8
12
20
  Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
13
22
  Classifier: Programming Language :: Python :: 3.11
14
- Classifier: Intended Audience :: Developers
15
- Classifier: Topic :: Utilities
16
- Requires-Python: >=3.9
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Requires-Python: >=3.7
17
26
  Description-Content-Type: text/markdown
18
27
  License-File: LICENSE
19
- Requires-Dist: core-tests
20
- Provides-Extra: test
28
+ Requires-Dist: core-tests>=1.1.0
29
+ Requires-Dist: typing-extensions>=4.8.0; python_version >= "3.8" and python_version < "3.11"
30
+ Requires-Dist: typing-extensions>=4.2.0; python_version >= "3.7" and python_version < "3.8"
21
31
 
22
32
  # core-data-structures
23
33
  _______________________________________________________________________________
@@ -0,0 +1,7 @@
1
+ core-tests>=1.1.0
2
+
3
+ [:python_version >= "3.7" and python_version < "3.8"]
4
+ typing-extensions>=4.2.0
5
+
6
+ [:python_version >= "3.8" and python_version < "3.11"]
7
+ typing-extensions>=4.8.0
@@ -1,6 +1,13 @@
1
1
  # -*- coding: utf-8 -*-
2
2
 
3
- from typing import Dict, List, Self
3
+ from typing import Dict, List
4
+
5
+ try:
6
+ from typing import Self
7
+
8
+ except ImportError:
9
+ # For earlier versions...
10
+ from typing_extensions import Self
4
11
 
5
12
 
6
13
  class Vertex:
@@ -3,13 +3,13 @@
3
3
  # https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
4
4
 
5
5
  [build-system]
6
- requires = ["setuptools>=61", "wheel"]
6
+ requires = ["setuptools>=61.0.0", "wheel"]
7
7
  build-backend = "setuptools.build_meta"
8
8
 
9
9
  [project]
10
10
  name = "core-data-structures"
11
11
  description = "This project/library contains commons data structures..."
12
- version = "1.0.0"
12
+ version = "1.1.0"
13
13
 
14
14
  authors = [
15
15
  {name = "Alejandro Cora González", email = "alek.cora.glez@gmail.com"}
@@ -19,27 +19,38 @@ maintainers = [
19
19
  {name = "Alejandro Cora González"}
20
20
  ]
21
21
 
22
- requires-python = ">=3.9"
22
+ requires-python = ">=3.7"
23
23
  license = {text = "MIT"}
24
24
  readme = "README.md"
25
25
 
26
26
  classifiers = [
27
27
  # Classifiers -> https://pypi.org/classifiers/
28
28
  "License :: OSI Approved :: MIT License",
29
+ "Intended Audience :: Developers",
30
+ "Development Status :: 5 - Production/Stable",
29
31
  "Topic :: Software Development :: Libraries :: Python Modules",
32
+ "Topic :: Utilities",
30
33
  "Programming Language :: Python :: 3",
34
+ "Programming Language :: Python :: 3.7",
35
+ "Programming Language :: Python :: 3.8",
31
36
  "Programming Language :: Python :: 3.9",
37
+ "Programming Language :: Python :: 3.10",
32
38
  "Programming Language :: Python :: 3.11",
33
- "Intended Audience :: Developers",
34
- "Topic :: Utilities"
39
+ "Programming Language :: Python :: 3.12",
40
+ "Programming Language :: Python :: 3.13"
35
41
  ]
36
42
 
37
43
  dependencies = [
38
- "core-tests"
44
+ "core-tests>=1.1.0",
45
+ "typing-extensions>=4.8.0; python_version >= '3.8' and python_version < '3.11'",
46
+ "typing-extensions>=4.2.0; python_version >= '3.7' and python_version < '3.8'"
39
47
  ]
40
48
 
49
+ #[project.optional-dependencies]
50
+ #test = []
51
+
41
52
  [project.urls]
42
53
  Homepage = "https://gitlab.com/bytecode-solutions/core/core-data-structures"
43
-
44
- [project.optional-dependencies]
45
- test = []
54
+ Repository = "https://gitlab.com/bytecode-solutions/core/core-data-structures"
55
+ Issues = "https://gitlab.com/bytecode-solutions/core/core-data-structures/-/issues"
56
+ Changelog = "https://gitlab.com/bytecode-solutions/core/core-data-structures/-/blob/master/CHANGELOG.md"
@@ -1,3 +0,0 @@
1
- core-tests
2
-
3
- [test]