1
0
Fork 0
mirror of synced 2024-07-06 07:00:56 +12:00
appwrite/app/sdks/server-python/setup.py

32 lines
1.3 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',
2019-06-10 06:13:55 +12:00
description = 'Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)',
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
)