mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-05-19 04:40:32 -05:00
1dff4e7b05
Bump package version in setup.py to 5.5.4. CHANGELOG: document 5.5.4 (full-database restore hardening and backup/restore documentation). docs/BUILD_CONFIGURATION.md: refresh version-code example and setup.py snippet to 5.5.4 (50504).
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.4',
|
|
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',
|
|
)
|