scikit-sampling 0.1.0__tar.gz → 1.0.2__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.
@@ -1,9 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scikit-sampling
3
- Version: 0.1.0
3
+ Version: 1.0.2
4
4
  Summary: A set of python modules for dataset sampling
5
5
  Author-email: Leonardo Moraes <leomaurodesenv@users.noreply.github.com>
6
6
  License-Expression: MIT
7
+ Project-URL: homepage, https://github.com/leomaurodesenv/scikit-sampling
8
+ Project-URL: source, https://github.com/leomaurodesenv/scikit-sampling
9
+ Project-URL: tracker, https://github.com/leomaurodesenv/scikit-sampling/issues
7
10
  Classifier: Intended Audience :: Science/Research
8
11
  Classifier: Intended Audience :: Developers
9
12
  Classifier: Programming Language :: Python
@@ -20,13 +23,15 @@ License-File: LICENSE
20
23
  Requires-Dist: scipy<2,>=1.15.0
21
24
  Provides-Extra: build
22
25
  Requires-Dist: setuptools<90,>=80.9.0; extra == "build"
26
+ Requires-Dist: uv<0.8,>=0.7.12; extra == "build"
27
+ Requires-Dist: python-semantic-release~=10.0; extra == "build"
23
28
  Dynamic: license-file
24
29
 
25
30
  # 🧪 Scikit-Sampling
26
31
 
27
32
  [![GitHub](https://img.shields.io/static/v1?label=Code&message=GitHub&color=blue&style=flat-square)](https://github.com/leomaurodesenv/scikit-sampling)
28
33
  [![MIT license](https://img.shields.io/static/v1?label=License&message=MIT&color=blue&style=flat-square)](LICENSE)
29
- [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/leomaurodesenv/scikit-sampling/continuous-integration.yml?label=Build&style=flat-square)](https://github.com/leomaurodesenv/scikit-sampling/actions/workflows/continuous-integration.yml)
34
+ [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/leomaurodesenv/scikit-sampling/deployment.yml?label=Build&style=flat-square)](https://github.com/leomaurodesenv/scikit-sampling/actions/workflows/deployment.yml)
30
35
 
31
36
 
32
37
  Scikit-Sampling (or `sksampling`) is a Python library for dataset sampling techniques. It provides a unified API for common sampling strategies, making it easy to integrate into your data science and machine learning workflows.
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![GitHub](https://img.shields.io/static/v1?label=Code&message=GitHub&color=blue&style=flat-square)](https://github.com/leomaurodesenv/scikit-sampling)
4
4
  [![MIT license](https://img.shields.io/static/v1?label=License&message=MIT&color=blue&style=flat-square)](LICENSE)
5
- [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/leomaurodesenv/scikit-sampling/continuous-integration.yml?label=Build&style=flat-square)](https://github.com/leomaurodesenv/scikit-sampling/actions/workflows/continuous-integration.yml)
5
+ [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/leomaurodesenv/scikit-sampling/deployment.yml?label=Build&style=flat-square)](https://github.com/leomaurodesenv/scikit-sampling/actions/workflows/deployment.yml)
6
6
 
7
7
 
8
8
  Scikit-Sampling (or `sksampling`) is a Python library for dataset sampling techniques. It provides a unified API for common sampling strategies, making it easy to integrate into your data science and machine learning workflows.
@@ -1,13 +1,9 @@
1
- [build-system]
2
- requires = ["setuptools>=80.9.0,<90"]
3
- build-backend = "setuptools.build_meta"
4
-
5
1
  [project]
6
2
  name = "scikit-sampling"
7
3
  license = "MIT"
8
4
  license-files = ["LICENSE"]
9
5
  readme = "README.md"
10
- version = "0.1.0"
6
+ version = "1.0.2"
11
7
  requires-python = ">=3.10"
12
8
  description = "A set of python modules for dataset sampling"
13
9
  authors = [
@@ -30,9 +26,16 @@ dependencies = [
30
26
  "scipy>=1.15.0,<2",
31
27
  ]
32
28
 
29
+ [project.urls]
30
+ homepage = "https://github.com/leomaurodesenv/scikit-sampling"
31
+ source = "https://github.com/leomaurodesenv/scikit-sampling"
32
+ tracker = "https://github.com/leomaurodesenv/scikit-sampling/issues"
33
+
33
34
  [project.optional-dependencies]
34
35
  build = [
35
36
  "setuptools>=80.9.0,<90",
37
+ "uv>=0.7.12,<0.8",
38
+ "python-semantic-release~=10.0",
36
39
  ]
37
40
 
38
41
  [dependency-groups]
@@ -48,3 +51,23 @@ pythonpath = [
48
51
  "."
49
52
  ]
50
53
  addopts = "--cov=sksampling --cov-report term-missing"
54
+
55
+ [build-system]
56
+ requires = ["setuptools>=80.9.0"]
57
+ build-backend = "setuptools.build_meta"
58
+
59
+ [tool.semantic_release]
60
+ build_command = """
61
+ uv lock --offline
62
+ git add uv.lock
63
+ uv build
64
+ """
65
+
66
+ [tool.semantic_release.branches.main]
67
+ match = "(main|master)"
68
+ prerelease = false
69
+
70
+ [tool.semantic_release.branches.feature]
71
+ match = "feat/.+"
72
+ prerelease = true
73
+ prerelease_token = "alpha"
@@ -1,9 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scikit-sampling
3
- Version: 0.1.0
3
+ Version: 1.0.2
4
4
  Summary: A set of python modules for dataset sampling
5
5
  Author-email: Leonardo Moraes <leomaurodesenv@users.noreply.github.com>
6
6
  License-Expression: MIT
7
+ Project-URL: homepage, https://github.com/leomaurodesenv/scikit-sampling
8
+ Project-URL: source, https://github.com/leomaurodesenv/scikit-sampling
9
+ Project-URL: tracker, https://github.com/leomaurodesenv/scikit-sampling/issues
7
10
  Classifier: Intended Audience :: Science/Research
8
11
  Classifier: Intended Audience :: Developers
9
12
  Classifier: Programming Language :: Python
@@ -20,13 +23,15 @@ License-File: LICENSE
20
23
  Requires-Dist: scipy<2,>=1.15.0
21
24
  Provides-Extra: build
22
25
  Requires-Dist: setuptools<90,>=80.9.0; extra == "build"
26
+ Requires-Dist: uv<0.8,>=0.7.12; extra == "build"
27
+ Requires-Dist: python-semantic-release~=10.0; extra == "build"
23
28
  Dynamic: license-file
24
29
 
25
30
  # 🧪 Scikit-Sampling
26
31
 
27
32
  [![GitHub](https://img.shields.io/static/v1?label=Code&message=GitHub&color=blue&style=flat-square)](https://github.com/leomaurodesenv/scikit-sampling)
28
33
  [![MIT license](https://img.shields.io/static/v1?label=License&message=MIT&color=blue&style=flat-square)](LICENSE)
29
- [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/leomaurodesenv/scikit-sampling/continuous-integration.yml?label=Build&style=flat-square)](https://github.com/leomaurodesenv/scikit-sampling/actions/workflows/continuous-integration.yml)
34
+ [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/leomaurodesenv/scikit-sampling/deployment.yml?label=Build&style=flat-square)](https://github.com/leomaurodesenv/scikit-sampling/actions/workflows/deployment.yml)
30
35
 
31
36
 
32
37
  Scikit-Sampling (or `sksampling`) is a Python library for dataset sampling techniques. It provides a unified API for common sampling strategies, making it easy to integrate into your data science and machine learning workflows.
@@ -2,3 +2,5 @@ scipy<2,>=1.15.0
2
2
 
3
3
  [build]
4
4
  setuptools<90,>=80.9.0
5
+ uv<0.8,>=0.7.12
6
+ python-semantic-release~=10.0
File without changes