intum 0.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.
- intum-0.0.1/PKG-INFO +12 -0
- intum-0.0.1/README.md +3 -0
- intum-0.0.1/pyproject.toml +16 -0
- intum-0.0.1/setup.cfg +4 -0
- intum-0.0.1/src/intum/__init__.py +1 -0
- intum-0.0.1/src/intum.egg-info/PKG-INFO +12 -0
- intum-0.0.1/src/intum.egg-info/SOURCES.txt +7 -0
- intum-0.0.1/src/intum.egg-info/dependency_links.txt +1 -0
- intum-0.0.1/src/intum.egg-info/top_level.txt +1 -0
intum-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: intum
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: The inTUM dataset support software package
|
|
5
|
+
Author-email: Martin Werner <martin.werner@tum.de>
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.8
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# inTUM Dataset Python Package
|
|
11
|
+
|
|
12
|
+
This is the python package for interacting with the intum dataset
|
intum-0.0.1/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "intum"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "The inTUM dataset support software package"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Martin Werner", email = "martin.werner@tum.de" }
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
dependencies = []
|
intum-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
print ("__Welcome__ to the intum package")
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: intum
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: The inTUM dataset support software package
|
|
5
|
+
Author-email: Martin Werner <martin.werner@tum.de>
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.8
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# inTUM Dataset Python Package
|
|
11
|
+
|
|
12
|
+
This is the python package for interacting with the intum dataset
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
intum
|