mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-01-06 03:30:25 -06:00
Updated for Ci-testing
Updated for Ci-testing
This commit is contained in:
19
setup.py
Normal file
19
setup.py
Normal file
@@ -0,0 +1,19 @@
|
||||
"""
|
||||
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='1.0.0',
|
||||
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',
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user