pyproject.toml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. [tool.poetry]
  2. name = "vrobbler"
  3. version = "0.6.2"
  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 = {version = "^2.9.3", extras = ["production"]}
  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. django-cachalot = "^2.5.2"
  33. pytz = "^2022.7.1"
  34. [tool.poetry.dev-dependencies]
  35. Werkzeug = "2.0.3"
  36. black = "^22.3"
  37. coverage = "^7.0.5"
  38. mypy = "^0.961"
  39. pytest = "^7.1"
  40. pytest-black = "^0.3.12"
  41. pytest-cov = "^3.0"
  42. pytest-django = "^4.5.2"
  43. pytest-flake8 = "^1.1"
  44. pytest-isort = "^3.0"
  45. pytest-runner = "^6.0"
  46. pytest-selenium = "^2.0.1"
  47. time-machine = "^2.9.0"
  48. types-pytz = "^2022.1"
  49. types-requests = "^2.27"
  50. bandit = "^1.7.4"
  51. [tool.pytest.ini_options]
  52. minversion = "6.0"
  53. addopts = "-ra -q"
  54. testpaths = ["tests"]
  55. DJANGO_SETTINGS_MODULE='vrobbler.settings'
  56. [tool.black]
  57. line-length = 79
  58. skip-string-normalization = true
  59. target-version = ["py39", "py310"]
  60. include = ".py$"
  61. exclude = "migrations"
  62. [tool.isort]
  63. multi_line_output = 3
  64. include_trailing_comma = true
  65. force_grid_wrap = 0
  66. combine_as_imports = true
  67. [tool.bandit]
  68. exclude_dirs = ["*/tests/*", "*/migrations/*"]
  69. [tool.poetry.scripts]
  70. vrobbler = "vrobbler.cli:main"
  71. [build-system]
  72. requires = ["poetry-core>=1.0.0"]
  73. build-backend = "poetry.core.masonry.api"