From e8ed4622404ecbfeab2080a98a7ec8770898bade Mon Sep 17 00:00:00 2001 From: ModusMorris Date: Wed, 26 Feb 2025 15:57:18 +0100 Subject: [PATCH] remvoed old files --- cnn/test.py | 17 --------- pyproject.toml | 87 ----------------------------------------------- src/__init__.py | 0 tests/__init__.py | 0 4 files changed, 104 deletions(-) delete mode 100644 cnn/test.py delete mode 100644 pyproject.toml delete mode 100644 src/__init__.py delete mode 100644 tests/__init__.py diff --git a/cnn/test.py b/cnn/test.py deleted file mode 100644 index af771ff..0000000 --- a/cnn/test.py +++ /dev/null @@ -1,17 +0,0 @@ -import pandas as pd - -folder_path = "D:\\Step-counter\\Output\\001" # Change to an actual folder -left_file = f"{folder_path}\\001_left_acceleration_data.csv" -right_file = f"{folder_path}\\001_right_acceleration_data.csv" - -left_data = pd.read_csv(left_file) -right_data = pd.read_csv(right_file) - -print("\nLeft Data (First 5 rows):") -print(left_data.head()) - -print("\nRight Data (First 5 rows):") -print(right_data.head()) - -print("\nLeft Data Shape:", left_data.shape) -print("Righht Data Shape:", right_data.shape) diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index a9b45c6..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,87 +0,0 @@ -# Build system requirements -[build-system] -requires = ["setuptools", "wheel"] -build-backend = "setuptools.build_meta" - -# Find packages in the "src" folder -[tool.setuptools.packages.find] -where = ["src"] # search for packages in the "src" folder -exclude = [] # exclude packages matching these glob patterns (empty by default) -namespaces = false # to disable scanning PEP 420 namespaces (true by default) - -# Project metadata -[project] -authors = [ - { name = "Alina Weidemann", email = "alina.weidemann@study.hs-duesseldorf.de" }, - { name = "Sophie Paul", email = "sophie.paul@study.hs-duesseldorf.de" }, - { name = "Nikita Rosik", email = "nikita.rosik@study.hs-duesseldorf.de" }, - { name = "Meric Kervankiran", email = "meric.kervankiran@study.hs-duesseldorf.de" }, - { name = "Maurice Füsser", email = "maurice.fuesser@study.hs-duesseldorf.de" }, - { name = "Anas Alhariri", email = "anas.alhariri@study.hs-duesseldorf.de" } -] - -classifiers = [ - "Development Status :: 2 - Pre-Alpha", - "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", - "Natural Language :: English", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", -] - -dependencies = [ - "ruff", - "numpy", - "pandas", - "opencv-python", - "mediapipe", - "tqdm", - "scipy", - "matplotlib", - "pytest", - "black", -] - -description = "A Python package for step counting using smart watch." -license = {file = "LICENSE"} -name = "step-counter" -readme = {file = "README.md", content-type = "text/markdown"} -requires-python = ">=3.8" -version = "0.1.0" - -# Optional dependencies -[project.optional-dependencies] -dev = [ - "black", - "pytest", - "ruff", -] -publishing = [ - "build", - "twine", - "wheel", -] - -# Black configuration -[tool.black] -line-length = 120 -include = '\.pyi?$' -exclude = ''' -/( - \.eggs -)/ -''' - -# isort configuration -[tool.isort] -profile = "black" -known_first_party = "step_counter" -src_paths = ["src", "tests"] # Include both src and tests directories -line_length = "100" - -[tool.pylint] # If you opt to use pylint -# Pylint configuration options \ No newline at end of file diff --git a/src/__init__.py b/src/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index e69de29..0000000