pyproject.toml 476 B

12345678910111213141516171819202122
  1. [tool.poetry]
  2. name = "modbus-server-nd"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Lu Xianghui <xianghui.lu@data-turing.com>"]
  6. package-mode = false
  7. [tool.poetry.dependencies]
  8. python = "^3.10"
  9. pymodbus = "^3.13.1"
  10. requests = "^2.34.2"
  11. psycopg2-binary = "^2.9.12"
  12. pyyaml = "^6.0.3"
  13. [build-system]
  14. requires = ["poetry-core"]
  15. build-backend = "poetry.core.masonry.api"
  16. [[tool.poetry.source]]
  17. name = "ali"
  18. url = "https://mirrors.aliyun.com/pypi/simple/"
  19. priority = "primary"