forked from home-assistant/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.py
More file actions
24 lines (19 loc) · 744 Bytes
/
const.py
File metadata and controls
24 lines (19 loc) · 744 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
"""Constants for the Eve Online integration."""
from typing import Final
DOMAIN: Final = "eveonline"
CONF_CHARACTER_ID: Final = "character_id"
CONF_CHARACTER_NAME: Final = "character_name"
OAUTH2_AUTHORIZE: Final = "https://login.eveonline.com/v2/oauth/authorize"
OAUTH2_TOKEN: Final = "https://login.eveonline.com/v2/oauth/token"
SCOPES: Final[list[str]] = [
"esi-characters.read_fatigue.v1",
"esi-industry.read_character_jobs.v1",
"esi-location.read_location.v1",
"esi-location.read_online.v1",
"esi-location.read_ship_type.v1",
"esi-mail.read_mail.v1",
"esi-markets.read_character_orders.v1",
"esi-skills.read_skillqueue.v1",
"esi-skills.read_skills.v1",
"esi-wallet.read_character_wallet.v1",
]