forked from keosariel/supabase-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.36 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1.36 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
41
42
43
from setuptools import setup, find_packages
import codecs
import os
from supabase_client import __version__
here = os.path.abspath(os.path.dirname(__file__))
VERSION = __version__
DESCRIPTION = "A supabase client for Python"
# Setting up
setup(
name="supabase_client",
version=VERSION,
author="Kenneth Gabriel",
author_email="[email protected]",
description=DESCRIPTION,
long_description="""
**Github Repo**: [https://github.com/keosariel/supabase-client](https://github.com/keosariel/supabase-client)
**Documentation**: [https://keosariel.github.io/2021/08/08/supabase-client-python/](https://keosariel.github.io/2021/08/08/supabase-client-python/)
""",
long_description_content_type="text/markdown",
url="https://github.com/keosariel/supabase-client",
packages=find_packages(),
license="MIT",
install_requires=[
"aiohttp >= 3.7.4",
],
extras_require={
"dotenv": ["python-dotenv"],
},
keywords=["python", "supabase", "request", "aiohttp", "client"],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
)