-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bf817cf
commit 7ebde23
Showing
1 changed file
with
30 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,41 @@ | ||
#!/usr/bin/env python | ||
|
||
import setuptools | ||
from setuptools import find_packages, setup | ||
|
||
setuptools.setup( | ||
requires = [ | ||
'requests==2.23.0', | ||
'schema==0.7.4' | ||
] | ||
|
||
setup( | ||
include_package_data=True, | ||
name="searchunify", | ||
version='1.0.3', | ||
version='1.0.4', | ||
description='The SearchUnify SDK enables developers to easily work with the SearchUnify platform and build scalable solutions with search, analytics, crawlers and more.', | ||
long_description=open('README.md').read(), | ||
author='SearchUnify', | ||
author_email='ankur.mahajan@grazitti.com', | ||
url='https://www.searchunify.com/', | ||
packages=[ | ||
'searchunify', | ||
'searchunify.core', | ||
'searchunify.core.analytics', | ||
'searchunify.core.auth', | ||
'searchunify.core.content', | ||
'searchunify.core.search', | ||
'searchunify.client', | ||
'searchunify.utils', | ||
'searchunify.utils.apis', | ||
'searchunify.utils.constants', | ||
'searchunify.utils.http_client', | ||
'searchunify.utils.validation' | ||
packages=find_packages(exclude=['tests*']), | ||
install_requires=requires, | ||
license="MIT", | ||
python_requires=">= 3", | ||
project_urls={ | ||
'Documentation': 'https://docs.searchunify.com/Content/Developer-Guides/SDKs-Python.htm', | ||
'Source': 'https://github.com/searchunify/su-sdk-python', | ||
}, | ||
classifiers=[ | ||
'Development Status :: Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Natural Language :: English', | ||
'License :: MIT', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
], | ||
install_requires=['requests==2.23.0', 'schema==0.7.4'] | ||
|
||
) |