pyproject.toml 406 B

1234567891011121314151617181920
  1. [tool.poetry]
  2. name = "neobots"
  3. version = "0.1.0"
  4. description = "Autoplayer for neobots"
  5. authors = ["txtsd <thexerothermicsclerodermoid@gmail.com>"]
  6. license = "GPL-3.0-only"
  7. readme = "README.md"
  8. [tool.poetry.dependencies]
  9. python = "^3.10"
  10. requests = "^2.28.1"
  11. beautifulsoup4 = "^4.11.1"
  12. lxml = "^4.9.1"
  13. toml = "^0.10.2"
  14. [build-system]
  15. requires = ["poetry-core"]
  16. build-backend = "poetry.core.masonry.api"