27 lines
606 B
Python
27 lines
606 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="dexorder-client",
|
|
version="0.1.0",
|
|
description="DexOrder Trading Platform Python Client",
|
|
packages=find_packages(),
|
|
python_requires=">=3.9",
|
|
install_requires=[
|
|
"pyiceberg>=0.6.0",
|
|
"pyarrow>=14.0.0",
|
|
"pandas>=2.0.0",
|
|
"pyzmq>=25.0.0",
|
|
"protobuf>=4.25.0",
|
|
"pyyaml>=6.0",
|
|
"aiofiles>=23.0.0",
|
|
"mcp>=0.9.0",
|
|
"jsonpatch>=1.33",
|
|
],
|
|
extras_require={
|
|
"dev": [
|
|
"pytest>=7.0.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
]
|
|
},
|
|
)
|