mirror of
https://github.com/sstent/AICyclingCoach.git
synced 2026-01-26 00:52:07 +00:00
change to TUI
This commit is contained in:
18
setup.py
Normal file
18
setup.py
Normal file
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
Setup script for AI Cycling Coach.
|
||||
"""
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="ai-cycling-coach",
|
||||
use_scm_version=True,
|
||||
setup_requires=['setuptools_scm'],
|
||||
packages=find_packages(),
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'cycling-coach=main:main',
|
||||
'ai-cycling-coach=main:main',
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user