12 lines
220 B
Python
Raw Normal View History

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