File tree 2 files changed +31
-19
lines changed
2 files changed +31
-19
lines changed Original file line number Diff line number Diff line change 8
8
9
9
name : Upload Python Package
10
10
11
- on : workflow_dispatch
11
+ on :
12
+ workflow_dispatch :
13
+ push :
14
+ tags :
15
+ - v*
12
16
13
17
permissions :
14
18
contents : read
15
19
16
20
jobs :
17
21
deploy :
18
-
19
22
runs-on : ubuntu-latest
20
23
21
24
steps :
22
- - uses : actions/checkout@v3
23
- - name : Set up Python
24
- uses : actions/setup-python@v3
25
- with :
26
- python-version : ' 3.x'
27
- - name : Install dependencies
28
- run : |
29
- python -m pip install --upgrade pip
30
- pip install build
31
- - name : Build package
32
- run : python -m build
33
- - name : Publish package
34
- uses : pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
35
- with :
36
- user : __token__
37
- password : ${{ secrets.PYPI_API_TOKEN }}
25
+ - name : Checkout Git LFS
26
+ uses : actions/checkout@v3
27
+ with :
28
+ lfs : " true"
29
+
30
+ - name : Set up Python
31
+ uses : actions/setup-python@v3
32
+ with :
33
+ python-version : " 3.x"
34
+
35
+ - name : Install dependencies
36
+ run : |
37
+ python -m pip install --upgrade pip
38
+ pip install build
39
+
40
+ - name : Build package
41
+ run : python -m build
42
+
43
+ - name : Publish package
44
+ uses : pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
45
+ with :
46
+ user : __token__
47
+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 21
21
22
22
setup (
23
23
name = "livekit" ,
24
- version = "0.2.2 " ,
24
+ version = "0.2.3 " ,
25
25
description = "LiveKit Python Client SDK for LiveKit" ,
26
26
long_description = long_description ,
27
27
long_description_content_type = "text/markdown" ,
39
39
],
40
40
41
41
keywords = "webrtc, livekit" ,
42
+ license = "Apache-2.0" ,
42
43
packages = ["livekit" ],
43
44
python_requires = ">=3.7, <4" ,
44
45
install_requires = ["pyee>=11.0.0" ,
47
48
"livekit" : ['lib/*/*/*.*' , '_proto/*.py' ],
48
49
},
49
50
project_urls = {
51
+ "Documentation" : "https://docs.livekit.io" ,
50
52
"Website" : "https://livekit.io/" ,
51
53
"Source" : "https://github.com/livekit/client-sdk-python/" ,
52
54
},
You can’t perform that action at this time.
0 commit comments