mirror of
https://github.com/sstent/AICyclingCoach.git
synced 2025-12-05 23:52:06 +00:00
18 lines
390 B
Python
18 lines
390 B
Python
#!/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',
|
|
],
|
|
},
|
|
) |