dbis-functional-dependencies 1.0.0__tar.gz → 1.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.
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/PKG-INFO +5 -3
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/pyproject.toml +4 -3
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/src/dbis_functional_dependencies.egg-info/PKG-INFO +5 -3
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/src/dbis_functional_dependencies.egg-info/requires.txt +1 -1
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_fdfromdata.py +1 -1
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/LICENSE +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/README.md +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/setup.cfg +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/src/dbis_functional_dependencies/BCNF.py +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/src/dbis_functional_dependencies/__init__.py +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/src/dbis_functional_dependencies/fdcheck.py +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/src/dbis_functional_dependencies/fds.py +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/src/dbis_functional_dependencies/fdsbase.py +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/src/dbis_functional_dependencies.egg-info/SOURCES.txt +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/src/dbis_functional_dependencies.egg-info/dependency_links.txt +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/src/dbis_functional_dependencies.egg-info/top_level.txt +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_bcnf.py +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_bitplan.py +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_cheung.py +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_dbis.py +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_fds.py +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_fdsbase.py +0 -0
- {dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_tum.py +0 -0
@@ -1,11 +1,12 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: dbis-functional-dependencies
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.1
|
4
4
|
Summary: RWTH Aachen Computer Science i5/dbis assets for Lecture Datenbanken und Informationssysteme
|
5
5
|
Author-email: DBIS i5 RWTH Aachen <dbis-vl@dbis.rwth-aachen.de>
|
6
6
|
Project-URL: Homepage, https://git.rwth-aachen.de/i5/teaching/dbis/dbis-functional-dependencies
|
7
7
|
Classifier: Programming Language :: Python :: 3.10
|
8
8
|
Classifier: Programming Language :: Python :: 3.11
|
9
|
+
Classifier: Programming Language :: Python :: 3.13
|
9
10
|
Requires-Python: >=3.10
|
10
11
|
Description-Content-Type: text/markdown
|
11
12
|
License-File: LICENSE
|
@@ -20,8 +21,9 @@ Requires-Dist: pylodstorage~=0.4.11
|
|
20
21
|
Provides-Extra: test
|
21
22
|
Requires-Dist: black==23.12.1; extra == "test"
|
22
23
|
Provides-Extra: build
|
23
|
-
Requires-Dist: twine==
|
24
|
+
Requires-Dist: twine==6.*; extra == "build"
|
24
25
|
Requires-Dist: build==1.*; extra == "build"
|
26
|
+
Dynamic: license-file
|
25
27
|
|
26
28
|
# DBIS Functional Dependencies
|
27
29
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name="dbis-functional-dependencies"
|
3
|
-
version='1.0.
|
3
|
+
version='1.0.1'
|
4
4
|
description="RWTH Aachen Computer Science i5/dbis assets for Lecture Datenbanken und Informationssysteme"
|
5
5
|
|
6
6
|
authors = [
|
@@ -10,7 +10,8 @@ readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
11
11
|
classifiers = [
|
12
12
|
"Programming Language :: Python :: 3.10",
|
13
|
-
"Programming Language :: Python :: 3.11"
|
13
|
+
"Programming Language :: Python :: 3.11",
|
14
|
+
"Programming Language :: Python :: 3.13"
|
14
15
|
]
|
15
16
|
|
16
17
|
dependencies = [
|
@@ -29,7 +30,7 @@ test = [
|
|
29
30
|
"black==23.12.1"
|
30
31
|
]
|
31
32
|
build = [
|
32
|
-
"twine==
|
33
|
+
"twine==6.*",
|
33
34
|
"build==1.*"
|
34
35
|
]
|
35
36
|
|
@@ -1,11 +1,12 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: dbis-functional-dependencies
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.1
|
4
4
|
Summary: RWTH Aachen Computer Science i5/dbis assets for Lecture Datenbanken und Informationssysteme
|
5
5
|
Author-email: DBIS i5 RWTH Aachen <dbis-vl@dbis.rwth-aachen.de>
|
6
6
|
Project-URL: Homepage, https://git.rwth-aachen.de/i5/teaching/dbis/dbis-functional-dependencies
|
7
7
|
Classifier: Programming Language :: Python :: 3.10
|
8
8
|
Classifier: Programming Language :: Python :: 3.11
|
9
|
+
Classifier: Programming Language :: Python :: 3.13
|
9
10
|
Requires-Python: >=3.10
|
10
11
|
Description-Content-Type: text/markdown
|
11
12
|
License-File: LICENSE
|
@@ -20,8 +21,9 @@ Requires-Dist: pylodstorage~=0.4.11
|
|
20
21
|
Provides-Extra: test
|
21
22
|
Requires-Dist: black==23.12.1; extra == "test"
|
22
23
|
Provides-Extra: build
|
23
|
-
Requires-Dist: twine==
|
24
|
+
Requires-Dist: twine==6.*; extra == "build"
|
24
25
|
Requires-Dist: build==1.*; extra == "build"
|
26
|
+
Dynamic: license-file
|
25
27
|
|
26
28
|
# DBIS Functional Dependencies
|
27
29
|
|
{dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_fdfromdata.py
RENAMED
@@ -56,7 +56,7 @@ class Test_FD_FromData(FunctionalDependencySetTest):
|
|
56
56
|
print(lod)
|
57
57
|
self.assertTrue(type(lod) is list)
|
58
58
|
expectedLen = expected[i]["len"]
|
59
|
-
self.
|
59
|
+
self.assertEqual(expectedLen, len(lod))
|
60
60
|
fdCheck = FDCheck(lod, debug=True)
|
61
61
|
entityName = example["entityName"]
|
62
62
|
fdCheck.createDatabase(entityName, doClose=False)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_bcnf.py
RENAMED
File without changes
|
{dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_bitplan.py
RENAMED
File without changes
|
{dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_cheung.py
RENAMED
File without changes
|
{dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_dbis.py
RENAMED
File without changes
|
File without changes
|
{dbis_functional_dependencies-1.0.0 → dbis_functional_dependencies-1.0.1}/tests/test_fdsbase.py
RENAMED
File without changes
|
File without changes
|