Sin descripción

pyproject.toml 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. [tool.poetry]
  2. name = "ocpp"
  3. version = "0.25.0"
  4. description = "Python package implementing the JSON version of the Open Charge Point Protocol (OCPP)."
  5. authors = [
  6. "André Duarte <andre15x@gmail.com>",
  7. "Auke Willem Oosterhoff <aukewillem.oosterhoff@mobilityhouse.com>",
  8. "Greg Lutostanski <greg.luto@gmail.com>",
  9. "Jared Newell <jared.newell@mobilityhouse.com>",
  10. "Jonathan Herrmann <jonathan.herrmann@mobilityhouse.com>",
  11. "Laysa Uchoa <laysa.uchoa@gmail.com>",
  12. "Oz N Tiram <oz.tiram@mobilityhouse.com>",
  13. "Patrick Roelke <proelke@gmail.com>",
  14. "Roger <roger.duran@mobilityhouse.com>",
  15. "dx <dx@mobilityhouse.com>",
  16. "Jan Vincke <jan.vincke@mobilityhouse.com>",
  17. ]
  18. repository = "https://github.com/mobilityhouse/ocpp"
  19. documentation = "https://ocpp.readthedocs.io/en/latest/"
  20. license = "MIT"
  21. readme = "README.rst"
  22. classifiers = [
  23. 'Development Status :: 5 - Production/Stable',
  24. 'License :: OSI Approved :: MIT License',
  25. 'Programming Language :: Python :: 3',
  26. 'Programming Language :: Python :: 3.10',
  27. 'Programming Language :: Python :: 3.9',
  28. 'Programming Language :: Python :: 3.8',
  29. 'Programming Language :: Python :: 3.7'
  30. ]
  31. [tool.poetry.dependencies]
  32. python = "^3.7"
  33. jsonschema = "^4.4.0"
  34. [tool.poetry.dev-dependencies]
  35. # Starting from Python 3.8, asynctest is replaced with a unittest.mock.AsyncMock in standard library.
  36. asynctest = { version = "0.13.0", python = "~3.7" }
  37. pytest = "^7"
  38. pytest-asyncio = "^0.20.3"
  39. pytest-cov = "^4.0.0"
  40. sphinx = "^2.4.5"
  41. black = "^22"
  42. isort = "^5"
  43. flake8 = "^5"
  44. [tool.black]
  45. line-length = 88
  46. [tool.isort]
  47. profile = "black"
  48. [build-system]
  49. requires = ["poetry>=1.1.11"]
  50. build-backend = "poetry.masonry.api"