Skip to content

Commit bdd3354

Browse files
pavanjavapavanmantha
and
pavanmantha
authored
Create pypi artifacts (#28)
* -created the required configs for pypi * -modified the configs accordingly --------- Co-authored-by: pavanmantha <[email protected]>
1 parent e1d8ca1 commit bdd3354

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/workflows/python-app.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ name: Python application
55

66
on:
77
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
1114

1215
permissions:
1316
contents: read

setup.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
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")
26

37
setup(
48
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",
612
packages=find_packages(),
713
include_package_data=True,
814
install_requires=[

0 commit comments

Comments
 (0)