humalab 0.0.2__tar.gz → 0.0.3__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.
Potentially problematic release.
This version of humalab might be problematic. Click here for more details.
- {humalab-0.0.2/humalab.egg-info → humalab-0.0.3}/PKG-INFO +1 -1
- humalab-0.0.3/VERSION +1 -0
- {humalab-0.0.2 → humalab-0.0.3/humalab.egg-info}/PKG-INFO +1 -1
- {humalab-0.0.2 → humalab-0.0.3}/humalab.egg-info/SOURCES.txt +3 -0
- {humalab-0.0.2 → humalab-0.0.3}/pyproject.toml +5 -16
- humalab-0.0.3/requirements-dev.txt +5 -0
- humalab-0.0.3/requirements.txt +4 -0
- {humalab-0.0.2 → humalab-0.0.3}/setup.py +11 -17
- {humalab-0.0.2 → humalab-0.0.3}/.gitignore +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/LICENSE +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/README.md +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/__init__.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/assets/__init__.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/assets/archive.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/assets/resource_file.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/assets/resource_handler.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/constants.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/dists/__init__.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/dists/bernoulli.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/dists/categorical.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/dists/discrete.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/dists/distribution.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/dists/gaussian.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/dists/log_uniform.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/dists/truncated_gaussian.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/dists/uniform.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/humalab.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/humalab_api_client.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/humalab_config.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/humalab_test.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/metrics/__init__.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/metrics/dist_metric.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/metrics/metric.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/metrics/summary.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/run.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/scenario.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab/scenario_test.py +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab.egg-info/dependency_links.txt +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab.egg-info/entry_points.txt +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab.egg-info/not-zip-safe +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab.egg-info/requires.txt +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/humalab.egg-info/top_level.txt +0 -0
- {humalab-0.0.2 → humalab-0.0.3}/setup.cfg +0 -0
humalab-0.0.3/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.0.3
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "humalab"
|
|
7
|
-
|
|
7
|
+
dynamic = ["version", "dependencies", "optional-dependencies"]
|
|
8
8
|
description = "Python SDK for HumaLab - A platform for adaptive AI validation."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -25,21 +25,10 @@ classifiers = [
|
|
|
25
25
|
"Programming Language :: Python :: 3.10",
|
|
26
26
|
"Programming Language :: Python :: 3.11",
|
|
27
27
|
]
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"pyyaml>=5.4.0",
|
|
33
|
-
]
|
|
34
|
-
|
|
35
|
-
[project.optional-dependencies]
|
|
36
|
-
dev = [
|
|
37
|
-
"pytest>=6.0.0",
|
|
38
|
-
"pytest-cov>=2.10.0",
|
|
39
|
-
"black>=21.0",
|
|
40
|
-
"flake8>=3.9.0",
|
|
41
|
-
"mypy>=0.910",
|
|
42
|
-
]
|
|
28
|
+
[tool.setuptools.dynamic]
|
|
29
|
+
version = {file = "VERSION"}
|
|
30
|
+
dependencies = {file = ["requirements.txt"]}
|
|
31
|
+
optional-dependencies.dev = {file = ["requirements-dev.txt"]}
|
|
43
32
|
|
|
44
33
|
[project.urls]
|
|
45
34
|
Homepage = "https://github.com/humalab/humalab_sdk"
|
|
@@ -8,15 +8,12 @@ the package to be installed via pip.
|
|
|
8
8
|
from setuptools import setup, find_packages
|
|
9
9
|
import os
|
|
10
10
|
|
|
11
|
-
# Read version from
|
|
11
|
+
# Read version from VERSION file
|
|
12
12
|
version = "0.0.1"
|
|
13
|
-
|
|
14
|
-
if os.path.exists(
|
|
15
|
-
with open(
|
|
16
|
-
|
|
17
|
-
if line.startswith("__version__"):
|
|
18
|
-
version = line.split("=")[1].strip().strip('"').strip("'")
|
|
19
|
-
break
|
|
13
|
+
version_file = os.path.join(os.path.dirname(__file__), "VERSION")
|
|
14
|
+
if os.path.exists(version_file):
|
|
15
|
+
with open(version_file, "r") as f:
|
|
16
|
+
version = f.read().strip()
|
|
20
17
|
|
|
21
18
|
# Read long description from README
|
|
22
19
|
long_description = ""
|
|
@@ -50,18 +47,15 @@ setup(
|
|
|
50
47
|
],
|
|
51
48
|
python_requires=">=3.8",
|
|
52
49
|
install_requires=[
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
"pyyaml>=5.4.0",
|
|
50
|
+
line.strip()
|
|
51
|
+
for line in open("requirements.txt")
|
|
52
|
+
if line.strip() and not line.startswith("#")
|
|
57
53
|
],
|
|
58
54
|
extras_require={
|
|
59
55
|
"dev": [
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"flake8>=3.9.0",
|
|
64
|
-
"mypy>=0.910",
|
|
56
|
+
line.strip()
|
|
57
|
+
for line in open("requirements-dev.txt")
|
|
58
|
+
if line.strip() and not line.startswith("#") and not line.startswith("-r")
|
|
65
59
|
],
|
|
66
60
|
},
|
|
67
61
|
entry_points={
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|