1
0
Fork 0
mirror of synced 2024-07-04 14:10:33 +12:00
appwrite/app/sdks/server-python/setup.py

32 lines
1.1 KiB
Python
Raw Normal View History

2019-11-21 08:01:20 +13:00
import setuptools
2019-06-10 06:13:55 +12:00
2019-11-21 08:01:20 +13:00
setuptools.setup(
2019-06-10 06:13:55 +12:00
name = 'appwrite',
2019-11-21 08:01:20 +13:00
packages = ['appwrite', 'appwrite/services'],
2020-03-20 05:46:30 +13:00
version = '0.0.4',
2019-06-10 17:44:55 +12:00
license='BSD-3-Clause',
2020-05-02 16:40:22 +12:00
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',
2019-06-10 06:13:55 +12:00
author = 'Appwrite Team',
2020-03-20 05:46:30 +13:00
author_email = 'team@appwrite.io',
2019-06-10 06:13:55 +12:00
maintainer = 'Appwrite Team',
2020-03-20 05:46:30 +13:00
maintainer_email = 'team@appwrite.io',
2019-06-10 06:13:55 +12:00
url = 'https://appwrite.io/support',
2020-03-20 05:46:30 +13:00
download_url='https://github.com/appwrite/sdk-for-python/archive/0.0.4.tar.gz',
2019-06-10 06:13:55 +12:00
# keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'],
install_requires=[
'requests',
],
classifiers=[
2019-11-21 08:01:20 +13:00
'Development Status :: 5 - Production/Stable',
2019-06-10 06:13:55 +12:00
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Topic :: Software Development',
2019-11-21 08:19:14 +13:00
'License :: OSI Approved :: BSD License',
2019-06-10 06:13:55 +12:00
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
2019-11-21 08:01:20 +13:00
)