pyproject.toml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. [tool.poetry]
  2. name = "vrobbler"
  3. version = "0.11.12"
  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. howlongtobeatpy = "^1.0.5"
  39. beautifulsoup4 = "^4.11.2"
  40. django-storages = "^1.13.2"
  41. boto3 = "^1.26.98"
  42. stream-sqlite = "^0.0.41"
  43. [tool.poetry.dev-dependencies]
  44. Werkzeug = "2.0.3"
  45. black = "^22.3"
  46. coverage = "^7.0.5"
  47. mypy = "^0.961"
  48. pytest = "^7.1"
  49. pytest-black = "^0.3.12"
  50. pytest-cov = "^3.0"
  51. pytest-django = "^4.5.2"
  52. pytest-flake8 = "^1.1"
  53. pytest-isort = "^3.0"
  54. pytest-runner = "^6.0"
  55. pytest-selenium = "^2.0.1"
  56. time-machine = "^2.9.0"
  57. types-pytz = "^2022.1"
  58. types-requests = "^2.27"
  59. bandit = "^1.7.4"
  60. [tool.pytest.ini_options]
  61. minversion = "6.0"
  62. addopts = "-ra -q"
  63. testpaths = ["tests"]
  64. DJANGO_SETTINGS_MODULE='vrobbler.settings'
  65. [tool.black]
  66. line-length = 79
  67. target-version = ["py39", "py310"]
  68. include = ".py$"
  69. exclude = "migrations"
  70. [tool.isort]
  71. multi_line_output = 3
  72. include_trailing_comma = true
  73. force_grid_wrap = 0
  74. combine_as_imports = true
  75. [tool.bandit]
  76. exclude_dirs = ["*/tests/*", "*/migrations/*"]
  77. [tool.poetry.scripts]
  78. vrobbler = "vrobbler.cli:main"
  79. [build-system]
  80. requires = ["poetry-core>=1.0.0"]
  81. build-backend = "poetry.core.masonry.api"