mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-01-22 04:20:18 -06:00
- Add comprehensive offline sync improvements with enhanced IndexedDB support - Optimize task model with cached total_hours calculation for better performance - Improve task service query optimization and eager loading strategies - Update CSP policy to allow CDN connections for improved resource loading - Enhance service worker with better background sync capabilities - Improve error handling and offline queue processing - Update base template and comment templates for better UX - Bump version to 4.3.2
20 lines
468 B
Python
20 lines
468 B
Python
"""
|
|
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='4.3.2',
|
|
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',
|
|
)
|
|
|