-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 965 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 965 Bytes
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
[project]
name = "GSL"
dynamic = ["version"]
description = "Libary to fully use Garmin devices without sharing private information with Garmin"
authors = [
{name = "Titouan Abadie", email = "titouan.abadie@tabadie.eu"},
]
dependencies = [
"enum",
"xml",
"os",
"re",
"hashlib",
"tempfile",
"requests",
"http",
"webbrowser",
"hashlib"
]
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python"
]
keywords = ["garmin", "garmin api", "garmin connect", "privacy", "garmin express"]
[project.urls]
Homepage = "https://github.com/abadiet/GarminServerLess"
Issues = "https://github.com/abadiet/GarminServerLess/issues"
[tool.setuptools]
packages = ["GSL"]
[tool.setuptools.dynamic]
version = {attr = "GSL.__version__"}