-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__about__.py
29 lines (27 loc) · 862 Bytes
/
__about__.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
"""Metadata for toggl-api-wrapper."""
__all__ = [
"__author__",
"__author_email__",
"__description__",
"__documentation__",
"__homepage__",
"__keywords__",
"__license__",
"__readme__",
"__repository__",
"__status__",
"__title__",
"__version__",
]
__title__ = "toggl-api-wrapper"
__version__ = "2.1.0"
__description__ = "Simple Toggl API wrapper for non-premium features."
__author__ = "David Kasakaitis"
__author_email__ = "[email protected]"
__keywords__ = ["wrapper", "toggl", "api", "httpx", "sqlalchemy", "time-tracker"]
__status__ = "4 - Beta"
__license__ = "MIT"
__readme__ = "README.md"
__repository__ = "https://github.com/ddkasa/toggl-api-wrapper"
__homepage__ = "https://ddkasa.github.io/toggl-api-wrapper/"
__documentation__ = "https://ddkasa.github.io/toggl-api-wrapper/api-guide/index.html"