Skip to content

Commit

Permalink
Merge pull request #81 from appwrite/dev
Browse files Browse the repository at this point in the history
Fix modules
  • Loading branch information
abnegate authored Mar 9, 2024
2 parents 38e762e + 1ac7a69 commit 920b493
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions appwrite/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ def __init__(self):
self._endpoint = 'https://cloud.appwrite.io/v1'
self._global_headers = {
'content-type': '',
'user-agent' : 'AppwritePythonSDK/5.0.0 (${os.uname().sysname}; ${os.uname().version}; ${os.uname().machine})',
'user-agent' : 'AppwritePythonSDK/5.0.1 (${os.uname().sysname}; ${os.uname().version}; ${os.uname().machine})',
'x-sdk-name': 'Python',
'x-sdk-platform': 'server',
'x-sdk-language': 'python',
'x-sdk-version': '5.0.0',
'x-sdk-version': '5.0.1',
'X-Appwrite-Response-Format' : '1.5.0',
}

Expand Down
16 changes: 10 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@

setuptools.setup(
name = 'appwrite',
packages = ['appwrite', 'appwrite/services'],
version = '5.0.0',
packages = [
'appwrite',
'appwrite/services',
'appwrite/encoders',
'appwrite/enums',
],
version = '5.0.1',
license='BSD-3-Clause',
description = 'Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API',
long_description = long_description,
Expand All @@ -18,11 +23,10 @@
maintainer = 'Appwrite Team',
maintainer_email = '[email protected]',
url = 'https://appwrite.io/support',
download_url='https://github.com/appwrite/sdk-for-python/archive/5.0.0.tar.gz',
# keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'],
download_url='https://github.com/appwrite/sdk-for-python/archive/5.0.1.tar.gz',
install_requires=[
'requests',
],
'requests',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 920b493

Please sign in to comment.