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