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",
version="0.1.0",
packages=find_packages(),
install_requires=[
"httpx",
"pyjwt",
],
python_requires=">=3.7",
2024-11-17 18:17:33 -05:00
)