-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.07 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import os
import re
from pathlib import Path
from setuptools import setup, find_packages
def read(file_name):
with open(
os.path.join(
Path(os.path.dirname(__file__)),
file_name)
) as _file:
return _file.read()
setup(
name="strava-to-trainingpeaks",
version=re.findall(
re.compile(r'[0-9]+\.[0-9]+\.[0-9]+'),
read('__version__.py')
)[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.30",
"langchain_openai==0.3.1",
"numpy==1.26.4",
"pandas==2.2.3",
"python-dotenv==1.0.1",
"questionary==2.1.0",
"scipy==1.15.1",
"tcxreader==0.4.10",
"tqdm==4.67.1"
],
entry_points={
"console_scripts": [
"strava-to-trainingpeaks=src.main:main",
],
},
)