13 lines
228 B
Python
Raw Normal View History

from setuptools import setup, find_packages
setup(
2024-11-17 18:17:33 -05:00
name="databridge-client",
2024-11-20 16:55:54 -05:00
version="0.1.2",
packages=find_packages(),
install_requires=[
"httpx",
"pyjwt",
],
python_requires=">=3.7",
2024-11-17 18:17:33 -05:00
)