dataimport-aicare 0.1.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.
@@ -0,0 +1,45 @@
1
+ name: Publish Python 🐍 package to PyPI
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ publish:
10
+ name: Publish to PyPI
11
+ runs-on: ubuntu-latest
12
+
13
+ environment:
14
+ name: pypi
15
+ url: https://pypi.org/p/dataimport_aicare
16
+ permissions:
17
+ id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
18
+
19
+ steps:
20
+ - name: Checkout code
21
+ uses: actions/checkout@v4
22
+
23
+ - name: Read Python version from .python-version
24
+ id: python_version
25
+ run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
26
+
27
+ - name: Set up Python
28
+ uses: actions/setup-python@v5
29
+ with:
30
+ python-version: ${{env.PYTHON_VERSION}}
31
+
32
+ - name: Install uv
33
+ run: pip install uv
34
+
35
+ - name: Update Twine
36
+ run: pip install twine --upgrade
37
+
38
+ - name: Install dependencies with uv
39
+ run: uv sync
40
+
41
+ - name: Build package with uv
42
+ run: uv build
43
+
44
+ - name: Publish to PyPI
45
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,3 @@
1
+ data/*
2
+ __pycache__/*
3
+ reports/*
@@ -0,0 +1 @@
1
+ 3.12
@@ -0,0 +1,7 @@
1
+ Copyright 2025 Sebastian Germer
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: dataimport_aicare
3
+ Version: 0.1.0
4
+ Summary: Small package for frequently used functions for the AI-CARE dataset
5
+ Project-URL: Repository, https://github.com/AI-CARE-Consortium/dataimport_aicare
6
+ Author: Nina Cassandra Wiegers
7
+ Author-email: Sebastian Germer <sebastian.germer@dfki.de>
8
+ License-Expression: MIT
9
+ License-File: LICENSE
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.12
16
+ Classifier: Topic :: Scientific/Engineering
17
+ Requires-Python: >=3.12
18
+ Requires-Dist: pandas>=2.3.2
19
+ Requires-Dist: scikit-learn>=1.7.1
20
+ Requires-Dist: ydata-profiling>=4.16.1
21
+ Description-Content-Type: text/markdown
22
+
23
+ # Dataimport_AICARE
24
+
25
+ Submodule for frequently used data loading and preprocessing methods inside of AI-CARE.
26
+
27
+ To include it in your project use ```pip install git+https://github.com/AI-CARE-Consortium/dataimport_aicare.git```.
@@ -0,0 +1,5 @@
1
+ # Dataimport_AICARE
2
+
3
+ Submodule for frequently used data loading and preprocessing methods inside of AI-CARE.
4
+
5
+ To include it in your project use ```pip install git+https://github.com/AI-CARE-Consortium/dataimport_aicare.git```.
@@ -0,0 +1,36 @@
1
+ [project]
2
+ name = "dataimport_aicare"
3
+ version = "0.1.0"
4
+ description = "Small package for frequently used functions for the AI-CARE dataset"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Sebastian Germer", email = "sebastian.germer@dfki.de" },
8
+ { name = "Nina Cassandra Wiegers"}
9
+ ]
10
+ requires-python = ">=3.12"
11
+ dependencies = [
12
+ "pandas>=2.3.2",
13
+ "scikit-learn>=1.7.1",
14
+ "ydata-profiling>=4.16.1",
15
+ ]
16
+ license="MIT"
17
+ classifiers = [
18
+ "License :: OSI Approved :: MIT License",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.12",
21
+ 'Development Status :: 3 - Alpha',
22
+ 'Intended Audience :: Science/Research',
23
+ 'Operating System :: OS Independent',
24
+ 'Topic :: Scientific/Engineering'
25
+ ]
26
+
27
+ [project.urls]
28
+ Repository = "https://github.com/AI-CARE-Consortium/dataimport_aicare"
29
+
30
+
31
+ [project.scripts]
32
+ generate_extra_columns = "dataimport_aicare.generate_extra_columns:main"
33
+
34
+ [build-system]
35
+ requires = ["hatchling"]
36
+ build-backend = "hatchling.build"
@@ -0,0 +1,5 @@
1
+ import os
2
+ os.environ["YDATA_SUPPRESS_BANNER"] = "1"
3
+ from . import data_preprocessing
4
+ from . import data_loading
5
+ from . import generate_extra_columns