python ircd using asyncio
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
439 B

2 years ago
2 years ago
2 years ago
2 years ago
  1. [tool.poetry]
  2. name = "paircd"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Forest Belton <65484+forestbelton@users.noreply.github.com>"]
  6. [tool.poetry.dependencies]
  7. python = "^3.8"
  8. python-dotenv = "^0.18.0"
  9. [tool.poetry.dev-dependencies]
  10. pytest = "^5.2"
  11. mypy = "^0.902"
  12. pre-commit = "^2.13.0"
  13. [tool.poetry.scripts]
  14. server = "paircd.main:main"
  15. [build-system]
  16. requires = ["poetry-core>=1.0.0"]
  17. build-backend = "poetry.core.masonry.api"