setup.py 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. from setuptools import setup, find_packages
  2. setup(
  3. name='pqai_agent',
  4. version='0.1.0',
  5. description='A Python package for Piaoquan AI Agent functionalities.',
  6. author='FENG Zhoutian',
  7. author_email='fengzhoutian@hotmail.com',
  8. url='https://git.yishihui.com/Server/AgentCoreService',
  9. packages=find_packages(),
  10. install_requires=[
  11. 'annotated-types==0.7.0',
  12. 'anyio==4.9.0',
  13. 'APScheduler==3.11.0',
  14. 'Authlib==1.5.1',
  15. 'certifi==2025.1.31',
  16. 'cffi==1.17.1',
  17. 'charset-normalizer==3.4.1',
  18. 'cozepy==0.13.0',
  19. 'cryptography==44.0.2',
  20. 'Deprecated==1.2.18',
  21. 'distro==1.9.0',
  22. 'grpcio==1.71.0',
  23. 'grpcio-tools==1.71.0',
  24. 'httpcore==1.0.7',
  25. 'httpx==0.27.2',
  26. 'idna==3.10',
  27. 'importlib_metadata==8.6.1',
  28. 'iniconfig==2.1.0',
  29. 'jiter==0.9.0',
  30. 'openai==1.68.2',
  31. 'packaging==24.2',
  32. 'pluggy==1.5.0',
  33. 'protobuf==5.29.4',
  34. 'pycparser==2.22',
  35. 'pydantic==2.10.6',
  36. 'pydantic_core==2.27.2',
  37. 'PyJWT==2.10.1',
  38. 'PyMySQL==1.1.1',
  39. 'pytest==8.3.5',
  40. 'PyYAML==6.0.2',
  41. 'rocketmq-python-client==5.0.5',
  42. 'requests>=2.0.0',
  43. 'setuptools==78.1.0',
  44. 'sniffio==1.3.1',
  45. 'tqdm==4.67.1',
  46. 'typing_extensions==4.13.0',
  47. 'tzlocal==5.3.1',
  48. 'urllib3==2.3.0',
  49. 'websockets==14.2',
  50. 'wrapt==1.17.2',
  51. 'zipp==3.21.0',
  52. 'docstring_parser~=0.16',
  53. 'pyapollos~=0.1.5',
  54. 'Werkzeug~=3.1.3',
  55. 'Flask~=3.1.0',
  56. 'jsonschema~=4.23.0',
  57. ],
  58. classifiers=[
  59. 'Programming Language :: Python :: 3',
  60. 'Operating System :: OS Independent',
  61. ],
  62. python_requires='>=3.6',
  63. )