Skip to content

Commit

Permalink
added packages in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohan Rana committed Oct 18, 2022
1 parent 980ec6e commit bf817cf
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,24 @@
setuptools.setup(
include_package_data=True,
name="searchunify",
version='1.0.2',
version='1.0.3',
description='The SearchUnify SDK enables developers to easily work with the SearchUnify platform and build scalable solutions with search, analytics, crawlers and more.',
author='SearchUnify',
author_email='ankur.mahajan@grazitti.com',
url='https://www.searchunify.com/',
packages=[
'searchunify',
'searchunify.core',
'searchunify.core',
'searchunify.core.analytics',
'searchunify.core.auth',
'searchunify.core.content',
'searchunify.core.search',
'searchunify.client',
'searchunify.utils',
'searchunify.utils',
'searchunify.utils.apis',
'searchunify.utils.constants',
'searchunify.utils.http_client',
'searchunify.utils.validation'
],
install_requires=['requests==2.23.0', 'schema==0.7.4']
)

0 comments on commit bf817cf

Please sign in to comment.