Adityavardhan Agrawal 6da9cc8495 SDK publishable
2024-11-17 18:17:42 -05:00

13 lines
228 B
Python

from setuptools import setup, find_packages
setup(
name="databridge-client",
version="0.1.0",
packages=find_packages(),
install_requires=[
"httpx",
"pyjwt",
],
python_requires=">=3.7",
)