-
Notifications
You must be signed in to change notification settings - Fork 83
/
setup.cfg
56 lines (51 loc) · 1.81 KB
/
setup.cfg
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
44
45
46
47
48
49
50
51
52
53
54
55
56
[bdist_wheel]
universal = 1
[metadata]
name = garminexport
version = 0.5.0
description = Garmin Connect activity exporter and backup tool
long_description = file: README.md
long_description_content_type = text/markdown
author = Peter Gardfjäll
author_email = [email protected]
keywords = garmin, export, backup
license = Apache-2.0
license_file = LICENSE
url = https://github.com/petergardfjall/garminexport
project_urls =
Source = https://github.com/petergardfjall/garminexport.git
Tracker = https://github.com/petergardfjall/garminexport/issues
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Intended Audience :: Developers
Natural Language :: English
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
zip_safe = True
packages =
garminexport
garminexport.cli
python_requires = >=3.5
install_requires =
requests>=2.0,<3
python-dateutil~=2.4
[options.extras_require]
# Note: needed to impersonate web browsers. Garmin Connect uses Cloudflare's bot
# protection which looks at TLS fingerprints to determine if the caller is a
# script (like curl) or a web browser. curl_cffi uses a patched libcurl to
# produce identical TLS fingerprints as real web browsers.
impersonate_browser = curl_cffi==0.5.9
test = pytest~=7.3; pytest-cov~=4.0
[options.entry_points]
console_scripts =
garmin-backup = garminexport.cli.backup:main
garmin-get-activity = garminexport.cli.get_activity:main
garmin-upload-activity = garminexport.cli.upload_activity:main