pyproject.toml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. [tool.poetry]
  2. name = "vrobbler"
  3. version = "0.11.5"
  4. description = ""
  5. authors = ["Colin Powell <colin@unbl.ink>"]
  6. [tool.poetry.dependencies]
  7. python = "^3.8"
  8. Django = "^4.0.3"
  9. django-extensions = "^3.1.5"
  10. python-dateutil = "^2.8.2"
  11. python-dotenv = "^0.20.0"
  12. python-json-logger = "^2.0.2"
  13. colorlog = "^6.6.0"
  14. djangorestframework = "^3.13.1"
  15. Markdown = "^3.3.6"
  16. django-filter = "^21.1"
  17. Pillow = "^9.0.1"
  18. psycopg2 = "^2.9.3"
  19. dj-database-url = "^0.5.0"
  20. django-mathfilters = "^1.0.0"
  21. django-allauth = "^0.50.0"
  22. django-celery-results = "^2.3.0"
  23. redis = "^4.2.2"
  24. django-taggit = "^2.1.0"
  25. django-markdownify = "^0.9.1"
  26. gunicorn = "^20.1.0"
  27. django-simple-history = "^3.1.1"
  28. whitenoise = "^6.3.0"
  29. musicbrainzngs = "^0.7.1"
  30. cinemagoer = "^2022.12.27"
  31. pysportsdb = "^0.1.0"
  32. pytz = "^2022.7.1"
  33. django-redis = "^5.2.0"
  34. pylast = "^5.1.0"
  35. django-encrypted-field = "^1.0.5"
  36. celery = "^5.2.7"
  37. honcho = "^1.1.0"
  38. [tool.poetry.dev-dependencies]
  39. Werkzeug = "2.0.3"
  40. black = "^22.3"
  41. coverage = "^7.0.5"
  42. mypy = "^0.961"
  43. pytest = "^7.1"
  44. pytest-black = "^0.3.12"
  45. pytest-cov = "^3.0"
  46. pytest-django = "^4.5.2"
  47. pytest-flake8 = "^1.1"
  48. pytest-isort = "^3.0"
  49. pytest-runner = "^6.0"
  50. pytest-selenium = "^2.0.1"
  51. time-machine = "^2.9.0"
  52. types-pytz = "^2022.1"
  53. types-requests = "^2.27"
  54. bandit = "^1.7.4"
  55. [tool.pytest.ini_options]
  56. minversion = "6.0"
  57. addopts = "-ra -q"
  58. testpaths = ["tests"]
  59. DJANGO_SETTINGS_MODULE='vrobbler.settings'
  60. [tool.black]
  61. line-length = 79
  62. skip-string-normalization = true
  63. target-version = ["py39", "py310"]
  64. include = ".py$"
  65. exclude = "migrations"
  66. [tool.isort]
  67. multi_line_output = 3
  68. include_trailing_comma = true
  69. force_grid_wrap = 0
  70. combine_as_imports = true
  71. [tool.bandit]
  72. exclude_dirs = ["*/tests/*", "*/migrations/*"]
  73. [tool.poetry.scripts]
  74. vrobbler = "vrobbler.cli:main"
  75. [build-system]
  76. requires = ["poetry-core>=1.0.0"]
  77. build-backend = "poetry.core.masonry.api"