mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-05-17 01:49:35 -05:00
96e0acbbea
Bump setup.py to 5.5.7 and document the invoice PDF designer layout fix, designer-to-ReportLab template parity, and preview vs export alignment for issue #622 in CHANGELOG.md.
25 lines
597 B
Python
25 lines
597 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='5.5.7',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
package_data={
|
|
"app": [
|
|
"resources/icc/*.icc",
|
|
"resources/icc/LICENSE.txt",
|
|
],
|
|
},
|
|
install_requires=[
|
|
# Core requirements are in requirements.txt
|
|
# This file is mainly for making the app importable during testing
|
|
],
|
|
python_requires='>=3.11',
|
|
)
|