ituna 0.0.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.
- ituna-0.0.0/PKG-INFO +20 -0
- ituna-0.0.0/ituna/__init__.py +1 -0
- ituna-0.0.0/ituna.egg-info/PKG-INFO +20 -0
- ituna-0.0.0/ituna.egg-info/SOURCES.txt +6 -0
- ituna-0.0.0/ituna.egg-info/dependency_links.txt +1 -0
- ituna-0.0.0/ituna.egg-info/top_level.txt +1 -0
- ituna-0.0.0/pyproject.toml +30 -0
- ituna-0.0.0/setup.cfg +4 -0
ituna-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ituna
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Tune machine learning models for empirical identifiability and consistency
|
|
5
|
+
Author-email: Tobias Schmidt <tobi.schmidt@helmholtz-munich.de>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/dynamical-inference/ituna
|
|
8
|
+
Project-URL: Repository, https://github.com/dynamical-inference/ituna.git
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/dynamical-inference/ituna/issues
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
|
+
Requires-Python: >=3.8
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.0"
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ituna
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Tune machine learning models for empirical identifiability and consistency
|
|
5
|
+
Author-email: Tobias Schmidt <tobi.schmidt@helmholtz-munich.de>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/dynamical-inference/ituna
|
|
8
|
+
Project-URL: Repository, https://github.com/dynamical-inference/ituna.git
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/dynamical-inference/ituna/issues
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
|
+
Requires-Python: >=3.8
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ituna
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ituna"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Tune machine learning models for empirical identifiability and consistency"
|
|
9
|
+
license = {text = "MIT"}
|
|
10
|
+
authors = [
|
|
11
|
+
{name = "Tobias Schmidt", email = "tobi.schmidt@helmholtz-munich.de"}
|
|
12
|
+
]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 3 - Alpha",
|
|
15
|
+
"Intended Audience :: Science/Research",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.8",
|
|
20
|
+
"Programming Language :: Python :: 3.9",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
24
|
+
]
|
|
25
|
+
requires-python = ">=3.8"
|
|
26
|
+
|
|
27
|
+
[project.urls]
|
|
28
|
+
Homepage = "https://github.com/dynamical-inference/ituna"
|
|
29
|
+
Repository = "https://github.com/dynamical-inference/ituna.git"
|
|
30
|
+
"Bug Tracker" = "https://github.com/dynamical-inference/ituna/issues"
|
ituna-0.0.0/setup.cfg
ADDED