forked from feast-dev/feast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
39 lines (36 loc) · 832 Bytes
/
Copy path__init__.py
File metadata and controls
39 lines (36 loc) · 832 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
from pkg_resources import DistributionNotFound, get_distribution
from .client import Client
from .data_source import (
BigQuerySource,
FileSource,
KafkaSource,
KinesisSource,
SourceType,
)
from .entity import Entity
from .feature import Feature
from .feature_store import FeatureStore
from .feature_table import FeatureTable
from .feature_view import FeatureView
from .repo_config import RepoConfig
from .value_type import ValueType
try:
__version__ = get_distribution(__name__).version
except DistributionNotFound:
# package is not installed
pass
__all__ = [
"Client",
"Entity",
"BigQuerySource",
"FileSource",
"KafkaSource",
"KinesisSource",
"Feature",
"FeatureStore",
"FeatureTable",
"FeatureView",
"RepoConfig",
"SourceType",
"ValueType",
]