Skip to content

Commit

Permalink
updated setup.py for long desc
Browse files Browse the repository at this point in the history
  • Loading branch information
mahajanankur committed Oct 18, 2022
1 parent bf817cf commit 7ebde23
Showing 1 changed file with 30 additions and 17 deletions.
47 changes: 30 additions & 17 deletions setup.py
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']

)

0 comments on commit 7ebde23

Please sign in to comment.