-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathrequirements.txt
More file actions
77 lines (65 loc) · 2.48 KB
/
requirements.txt
File metadata and controls
77 lines (65 loc) · 2.48 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
65
66
67
68
69
70
71
72
73
74
75
76
77
# =============================================================================
# J2534-API Development Requirements
# =============================================================================
#
# The core J2534-API package has NO external dependencies.
# It uses only Python standard library (ctypes, winreg, dataclasses, etc.)
#
# This file lists optional dependencies for development and GUI examples.
#
# Installation:
# pip install -r requirements.txt # All development dependencies
# pip install j2534-api # Core package only
# pip install j2534-api[gui-all] # Core + all GUI frameworks
# pip install j2534-api[dev] # Core + development tools
#
# =============================================================================
# =============================================================================
# Development Tools
# =============================================================================
# Testing
pytest>=7.0.0
pytest-cov>=4.0.0
# Code formatting
black>=23.0.0
isort>=5.0.0
# Linting
flake8>=6.0.0
flake8-docstrings>=1.7.0
# Type checking
mypy>=1.0.0
# Build tools
build>=1.0.0
twine>=4.0.0
# =============================================================================
# GUI Frameworks (Optional - for running examples)
# Note: Dear PyGui and Flet removed (compatibility issues with 32-bit Python)
# =============================================================================
# PyQt5 - Professional cross-platform GUI
# pip install PyQt5>=5.15.0
# CustomTkinter - Modern themed Tkinter widgets
# pip install customtkinter>=5.0.0
# FreeSimpleGUI - Simple GUI for rapid prototyping (free fork of PySimpleGUI)
# pip install FreeSimpleGUI>=5.0.0
# =============================================================================
# Notes
# =============================================================================
#
# Windows Only: This library requires Windows as it uses:
# - Windows Registry (winreg) for device discovery
# - Windows DLLs (ctypes) for J2534 PassThru communication
#
# Python Version: Requires Python 3.10 or higher
#
# J2534 Device: A physical J2534-compliant PassThru device is required
# for actual vehicle communication. The library supports all SAE J2534-1
# compliant devices including:
# - Drew Technologies (Mongoose, CarDAQ)
# - Ford VCM II
# - GM MDI
# - Honda HDS
# - Toyota Techstream
# - And many more...
#
# =============================================================================
customtkinter