forked from appwrite/sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.45 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import setuptools
long_description: str
with open("README.md", "r", encoding="utf-8") as readme_file_desc:
long_description = readme_file_desc.read()
setuptools.setup(
name="async_appwrite",
packages=[
"async_appwrite",
"async_appwrite/services",
# 'appwrite/encoders',
# 'appwrite/enums',
],
version="1.0.0",
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,
long_description_content_type="text/markdown",
author="Umar Saadu",
author_email="saaduumar42@gmail.com",
maintainer="Umar Saadu",
maintainer_email="saaduumar42@gmail.com",
# url = 'https://appwrite.io/support',
# download_url='https://github.com/appwrite/sdk-for-python/archive/6.0.0.tar.gz',
install_requires=["requests", "appwrite", "httpx"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Environment :: Web Environment",
"Topic :: Software Development",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)