-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
64 lines (51 loc) · 1.59 KB
/
requirements.txt
File metadata and controls
64 lines (51 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Worklog Manager - Python Dependencies
# Version 1.7.0 - Advanced Features
# Core Dependencies (included with Python standard library):
# - tkinter (GUI framework)
# - sqlite3 (database)
# - datetime (time handling)
# - threading (background timers)
# - logging (application logging)
# - json (data export/settings)
# - csv (data export)
# - uuid (unique identifiers)
# - pathlib (file path handling)
# - atexit (cleanup handlers)
# Required Dependencies for Advanced Features:
# Install with: pip install -r requirements.txt
# Cross-platform notifications (Phase 4)
plyer>=2.0
# PDF export functionality (Phase 3 & 4)
reportlab>=3.6.0
# Python 3.6 compatibility
dataclasses; python_version < "3.7"
# Optional Dependencies for Enhanced Experience:
# Windows-specific system integration (Windows only)
# Uncomment if you're on Windows and want full system tray support
# pywin32>=227
# Development Dependencies (optional):
# Uncomment these for development/testing
# Code formatting
# black>=22.0.0
# Code linting
# flake8>=4.0.0
# Type checking
# mypy>=0.950
# Testing framework
# pytest>=7.0.0
# Installation Commands:
#
# Basic installation (Phases 1-3 features):
# pip install reportlab
#
# Full installation (all Phase 4 features):
# pip install plyer reportlab
#
# Windows full installation:
# pip install plyer reportlab pywin32
#
# Development setup:
# pip install plyer reportlab black flake8 mypy pytest
#
# Note: The application gracefully handles missing optional dependencies
# and will inform users about unavailable features.