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.
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/PKG-INFO +16 -6
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/core_data_structures.egg-info/PKG-INFO +16 -6
- core_data_structures-1.1.0/core_data_structures.egg-info/requires.txt +7 -0
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/graphs/vertex.py +8 -1
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/pyproject.toml +20 -9
- core-data-structures-1.0.0/core_data_structures.egg-info/requires.txt +0 -3
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/LICENSE +0 -0
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/README.md +0 -0
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/core_data_structures.egg-info/SOURCES.txt +0 -0
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/core_data_structures.egg-info/dependency_links.txt +0 -0
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/core_data_structures.egg-info/top_level.txt +0 -0
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/__init__.py +0 -0
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/graphs/__init__.py +0 -0
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/graphs/graphs.py +0 -0
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/trees/__init__.py +0 -0
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/trees/binary_tree.py +0 -0
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/trees/simple_tree.py +0 -0
- {core-data-structures-1.0.0 → core_data_structures-1.1.0}/setup.cfg +0 -0
- {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.
|
|
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:
|
|
15
|
-
Classifier:
|
|
16
|
-
Requires-Python: >=3.
|
|
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
|
-
|
|
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
|
_______________________________________________________________________________
|
{core-data-structures-1.0.0 → core_data_structures-1.1.0}/core_data_structures.egg-info/PKG-INFO
RENAMED
|
@@ -1,23 +1,33 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: core-data-structures
|
|
3
|
-
Version: 1.
|
|
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:
|
|
15
|
-
Classifier:
|
|
16
|
-
Requires-Python: >=3.
|
|
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
|
-
|
|
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
|
_______________________________________________________________________________
|
|
@@ -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.
|
|
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.
|
|
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
|
-
"
|
|
34
|
-
"
|
|
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
|
-
|
|
45
|
-
|
|
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"
|
|
File without changes
|
|
File without changes
|
{core-data-structures-1.0.0 → core_data_structures-1.1.0}/core_data_structures.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/graphs/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/trees/binary_tree.py
RENAMED
|
File without changes
|
{core-data-structures-1.0.0 → core_data_structures-1.1.0}/data_structures/trees/simple_tree.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|