Updated for Ci-testing

Updated for Ci-testing
This commit is contained in:
Dries Peeters
2025-10-09 13:13:28 +02:00
parent 0752332ed6
commit 6f4c8c8c21
6 changed files with 268 additions and 1 deletions

19
setup.py Normal file
View File

@@ -0,0 +1,19 @@
"""
Setup configuration for TimeTracker application.
This allows the app to be installed as a package for testing.
"""
from setuptools import setup, find_packages
setup(
name='timetracker',
version='1.0.0',
packages=find_packages(),
include_package_data=True,
install_requires=[
# Core requirements are in requirements.txt
# This file is mainly for making the app importable during testing
],
python_requires='>=3.11',
)