-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (28 loc) · 902 Bytes
/
setup.py
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
from setuptools import setup
def get_description():
with open("README.md") as file:
return file.read()
setup(
name="bubble-client",
version="0.7.3",
url="https://github.com/Refty/bubble-client",
author="Guillaume Gelin",
author_email="[email protected]",
description="Python client for Bubble.io APIs",
long_description=get_description(),
long_description_content_type="text/markdown",
py_modules=["bubble_client"],
python_requires=">=3.7, <4",
install_requires=[
"thingy >= 0.8.5",
"httpx >= 0.21.3",
],
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
],
)