mirror of
https://github.com/james-m-jordan/morphik-core.git
synced 2025-05-09 19:32:38 +00:00
13 lines
228 B
Python
13 lines
228 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="databridge-client",
|
|
version="0.1.2",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"httpx",
|
|
"pyjwt",
|
|
],
|
|
python_requires=">=3.7",
|
|
)
|