Commit bdd3354 1 parent e1d8ca1 commit bdd3354 Copy full SHA for bdd3354
File tree 2 files changed +13
-4
lines changed
2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,12 @@ name: Python application
5
5
6
6
on :
7
7
push :
8
- branches : [ "main" ]
9
- pull_request :
10
- branches : [ "main" ]
8
+ branches :
9
+ - main
10
+ # uncomment the below code to enable actions on PR branch also.
11
+ # pull_request:
12
+ # branches:
13
+ # - main
11
14
12
15
permissions :
13
16
contents : read
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
+ import pathlib
3
+
4
+ doc_path = pathlib .Path (__file__ ).parent .resolve ()
5
+ long_description = (doc_path / "README.md" ).read_text (encoding = "utf-8" )
2
6
3
7
setup (
4
8
name = 'bootstrap-rag' ,
5
- version = '0.0.4' ,
9
+ version = '0.0.5' ,
10
+ long_description = long_description ,
11
+ long_description_content_type = "text/markdown" ,
6
12
packages = find_packages (),
7
13
include_package_data = True ,
8
14
install_requires = [
You can’t perform that action at this time.
0 commit comments