File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[project ]
22name = " talkops"
3- version = " 1.0.0 "
3+ version = " 1.0.1 "
44description = " TalkOps SDK"
55authors = [{ name = " PicoUX" }]
66license = " MIT"
7+ license-files = [" LICENSE" ]
8+ readme = " README.md"
79requires-python = " >=3.7"
810dependencies = [
911 " jinja2>=3.1.6" ,
Original file line number Diff line number Diff line change 44from .parameter import Parameter
55from .readme import Readme
66from .manifest import Manifest
7+ from .media import Media
78import asyncio
89import json
910import base64
1011import os
11- import pkg_resources
12+ from importlib . metadata import version
1213
1314class Extension :
1415 def __init__ (self , token = None ):
@@ -43,7 +44,7 @@ async def _setup(self):
4344 'parameters' : self ._parameters ,
4445 'sdk' : {
4546 'name' : 'python' ,
46- 'version' : pkg_resources . get_distribution ('talkops' ). version ,
47+ 'version' : version ('talkops' ),
4748 },
4849 'softwareVersion' : self ._software_version ,
4950 'functionSchemas' : self ._function_schemas ,
@@ -76,7 +77,7 @@ async def _setup(self):
7677 'name' : self ._name ,
7778 'sdk' : {
7879 'name' : 'python' ,
79- 'version' : pkg_resources . get_distribution ('talkops' ). version ,
80+ 'version' : version ('talkops' ),
8081 },
8182 'softwareVersion' : self ._software_version ,
8283 'website' : self ._website ,
Original file line number Diff line number Diff line change 33A TalkOps Extension made to work with [TalkOps](https://talkops.app).
44
55**TalkOps enables real-time voice interaction with applications.**
6-
76{% if extension .features %}
87## Features
98
10- {% for feature in extension .features %}
9+ {% for feature in extension .features - %}
1110* {{ feature.strip() }}
12- {% endfor %}
11+ {% endfor - %}
1312{% endif %}
14-
1513## Installation
1614
17151. Sign in to [TalkOps](https://talkops.app).
You can’t perform that action at this time.
0 commit comments