Skip to content

Commit 920b493

Browse files
authored
Merge pull request #81 from appwrite/dev
Fix modules
2 parents 38e762e + 1ac7a69 commit 920b493

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

appwrite/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ def __init__(self):
1313
self._endpoint = 'https://cloud.appwrite.io/v1'
1414
self._global_headers = {
1515
'content-type': '',
16-
'user-agent' : 'AppwritePythonSDK/5.0.0 (${os.uname().sysname}; ${os.uname().version}; ${os.uname().machine})',
16+
'user-agent' : 'AppwritePythonSDK/5.0.1 (${os.uname().sysname}; ${os.uname().version}; ${os.uname().machine})',
1717
'x-sdk-name': 'Python',
1818
'x-sdk-platform': 'server',
1919
'x-sdk-language': 'python',
20-
'x-sdk-version': '5.0.0',
20+
'x-sdk-version': '5.0.1',
2121
'X-Appwrite-Response-Format' : '1.5.0',
2222
}
2323

setup.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@
77

88
setuptools.setup(
99
name = 'appwrite',
10-
packages = ['appwrite', 'appwrite/services'],
11-
version = '5.0.0',
10+
packages = [
11+
'appwrite',
12+
'appwrite/services',
13+
'appwrite/encoders',
14+
'appwrite/enums',
15+
],
16+
version = '5.0.1',
1217
license='BSD-3-Clause',
1318
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',
1419
long_description = long_description,
@@ -18,11 +23,10 @@
1823
maintainer = 'Appwrite Team',
1924
maintainer_email = 'team@appwrite.io',
2025
url = 'https://appwrite.io/support',
21-
download_url='https://github.com/appwrite/sdk-for-python/archive/5.0.0.tar.gz',
22-
# keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'],
26+
download_url='https://github.com/appwrite/sdk-for-python/archive/5.0.1.tar.gz',
2327
install_requires=[
24-
'requests',
25-
],
28+
'requests',
29+
],
2630
classifiers=[
2731
'Development Status :: 5 - Production/Stable',
2832
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)