-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (26 loc) · 818 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
setup(
name="strava-to-trainingpeaks",
version="0.1.0",
author="Lucas de Brito Silva",
author_email="lucasbsilva29@gmail.com",
description="A tool to sync Strava activities with TrainingPeaks, with the OpenAI API creating the workout descriptions.",
packages=find_packages(),
install_requires=[
"defusedxml==0.7.1",
"langchain_core==0.3.19",
"langchain_openai==0.2.8",
"numpy==1.26.4",
"pandas==2.2.3",
"python-dotenv==1.0.1",
"questionary==2.0.1",
"scipy==1.13.1",
"tcxreader==0.4.10",
"tqdm==4.67.0"
],
entry_points={
"console_scripts": [
"strava-to-trainingpeaks=src.main:main",
],
},
)