Skip to content

Commit

Permalink
Add Long description reader
Browse files Browse the repository at this point in the history
  • Loading branch information
SHARANTANGEDA committed Aug 30, 2023
1 parent 1fd7168 commit 85bd0c6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ def read_requirements(file_name):
requirements.append(line)
return requirements


with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name='xpuls-mlmonitor',
version='0.0.1',
Expand All @@ -29,5 +33,7 @@ def read_requirements(file_name):
extras_require={
'langchain': read_requirements('requirements/requirements_langchain.txt'),
'all': read_requirements('requirements.txt')
}
},
long_description_content_type='text/markdown',
long_description=long_description,
)

0 comments on commit 85bd0c6

Please sign in to comment.